UNPKG

@pulumiverse/fortios

Version:

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

106 lines (105 loc) 3.21 kB
import * as pulumi from "@pulumi/pulumi"; /** * Provides a resource to configure virtual IP groups of FortiOS. * * !> **Warning:** The resource will be deprecated and replaced by new resource `fortios.firewall.Vipgrp`, we recommend that you use the new resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as fortios from "@pulumiverse/fortios"; * * const v11 = new fortios.firewall.ObjectVipgroup("v11", { * comments: "comments", * "interface": "port3", * members: [ * "vip1", * "vip3", * ], * }); * ``` */ export declare class ObjectVipgroup extends pulumi.CustomResource { /** * Get an existing ObjectVipgroup 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?: ObjectVipgroupState, opts?: pulumi.CustomResourceOptions): ObjectVipgroup; /** * Returns true if the given object is an instance of ObjectVipgroup. 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 ObjectVipgroup; /** * Comment. */ readonly comments: pulumi.Output<string | undefined>; /** * Interface name. */ readonly interface: pulumi.Output<string>; /** * Member VIP objects of the group. */ readonly members: pulumi.Output<string[]>; /** * VIP group name. */ readonly name: pulumi.Output<string>; /** * Create a ObjectVipgroup 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: ObjectVipgroupArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ObjectVipgroup resources. */ export interface ObjectVipgroupState { /** * Comment. */ comments?: pulumi.Input<string>; /** * Interface name. */ interface?: pulumi.Input<string>; /** * Member VIP objects of the group. */ members?: pulumi.Input<pulumi.Input<string>[]>; /** * VIP group name. */ name?: pulumi.Input<string>; } /** * The set of arguments for constructing a ObjectVipgroup resource. */ export interface ObjectVipgroupArgs { /** * Comment. */ comments?: pulumi.Input<string>; /** * Interface name. */ interface?: pulumi.Input<string>; /** * Member VIP objects of the group. */ members: pulumi.Input<pulumi.Input<string>[]>; /** * VIP group name. */ name?: pulumi.Input<string>; }