UNPKG

@pulumiverse/fortios

Version:

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

70 lines (69 loc) 2.65 kB
import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information on fortios firewall ipv6ehfilter */ export declare function getIpv6ehfilter(args?: GetIpv6ehfilterArgs, opts?: pulumi.InvokeOptions): Promise<GetIpv6ehfilterResult>; /** * A collection of arguments for invoking getIpv6ehfilter. */ export interface GetIpv6ehfilterArgs { /** * 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 getIpv6ehfilter. */ export interface GetIpv6ehfilterResult { /** * Enable/disable blocking packets with the Authentication header (default = disable). */ readonly auth: string; /** * Enable/disable blocking packets with Destination Options headers (default = disable). */ readonly destOpt: string; /** * Enable/disable blocking packets with the Fragment header (default = disable). */ readonly fragment: string; /** * Block specific Hop-by-Hop and/or Destination Option types (max. 7 types, each between 0 and 255, default = 0). */ readonly hdoptType: number; /** * Enable/disable blocking packets with the Hop-by-Hop Options header (default = disable). */ readonly hopOpt: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Enable/disable blocking packets with the No Next header (default = disable) */ readonly noNext: string; /** * Enable/disable blocking packets with Routing headers (default = enable). */ readonly routing: string; /** * Block specific Routing header types (max. 7 types, each between 0 and 255, default = 0). */ readonly routingType: number; readonly vdomparam?: string; } /** * Use this data source to get information on fortios firewall ipv6ehfilter */ export declare function getIpv6ehfilterOutput(args?: GetIpv6ehfilterOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetIpv6ehfilterResult>; /** * A collection of arguments for invoking getIpv6ehfilter. */ export interface GetIpv6ehfilterOutputArgs { /** * 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>; }