UNPKG

@lubyou/pulumi-fortios

Version:

A Pulumi package for creating and managing fortios cloud resources.

100 lines (99 loc) 4.3 kB
import * as pulumi from "@pulumi/pulumi"; export declare class FirewallIppool extends pulumi.CustomResource { /** * Get an existing FirewallIppool resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: FirewallIppoolState, opts?: pulumi.CustomResourceOptions): FirewallIppool; /** * Returns true if the given object is an instance of FirewallIppool. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is FirewallIppool; readonly addNat64Route: pulumi.Output<string>; readonly arpIntf: pulumi.Output<string>; readonly arpReply: pulumi.Output<string>; readonly associatedInterface: pulumi.Output<string>; readonly blockSize: pulumi.Output<number>; readonly comments: pulumi.Output<string | undefined>; readonly endip: pulumi.Output<string>; readonly endport: pulumi.Output<number>; readonly name: pulumi.Output<string>; readonly nat64: pulumi.Output<string>; readonly numBlocksPerUser: pulumi.Output<number>; readonly pbaTimeout: pulumi.Output<number>; readonly permitAnyHost: pulumi.Output<string>; readonly portPerUser: pulumi.Output<number>; readonly sourceEndip: pulumi.Output<string>; readonly sourceStartip: pulumi.Output<string>; readonly startip: pulumi.Output<string>; readonly startport: pulumi.Output<number>; readonly subnetBroadcastInIppool: pulumi.Output<string>; readonly type: pulumi.Output<string>; readonly vdomparam: pulumi.Output<string | undefined>; /** * Create a FirewallIppool resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: FirewallIppoolArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering FirewallIppool resources. */ export interface FirewallIppoolState { addNat64Route?: pulumi.Input<string>; arpIntf?: pulumi.Input<string>; arpReply?: pulumi.Input<string>; associatedInterface?: pulumi.Input<string>; blockSize?: pulumi.Input<number>; comments?: pulumi.Input<string>; endip?: pulumi.Input<string>; endport?: pulumi.Input<number>; name?: pulumi.Input<string>; nat64?: pulumi.Input<string>; numBlocksPerUser?: pulumi.Input<number>; pbaTimeout?: pulumi.Input<number>; permitAnyHost?: pulumi.Input<string>; portPerUser?: pulumi.Input<number>; sourceEndip?: pulumi.Input<string>; sourceStartip?: pulumi.Input<string>; startip?: pulumi.Input<string>; startport?: pulumi.Input<number>; subnetBroadcastInIppool?: pulumi.Input<string>; type?: pulumi.Input<string>; vdomparam?: pulumi.Input<string>; } /** * The set of arguments for constructing a FirewallIppool resource. */ export interface FirewallIppoolArgs { addNat64Route?: pulumi.Input<string>; arpIntf?: pulumi.Input<string>; arpReply?: pulumi.Input<string>; associatedInterface?: pulumi.Input<string>; blockSize?: pulumi.Input<number>; comments?: pulumi.Input<string>; endip: pulumi.Input<string>; endport?: pulumi.Input<number>; name?: pulumi.Input<string>; nat64?: pulumi.Input<string>; numBlocksPerUser?: pulumi.Input<number>; pbaTimeout?: pulumi.Input<number>; permitAnyHost?: pulumi.Input<string>; portPerUser?: pulumi.Input<number>; sourceEndip?: pulumi.Input<string>; sourceStartip?: pulumi.Input<string>; startip: pulumi.Input<string>; startport?: pulumi.Input<number>; subnetBroadcastInIppool?: pulumi.Input<string>; type?: pulumi.Input<string>; vdomparam?: pulumi.Input<string>; }