UNPKG

@pulumiverse/fortios

Version:

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

90 lines (89 loc) 2.87 kB
import * as pulumi from "@pulumi/pulumi"; /** * Provides a resource to configure VDOM of FortiOS. The API user of the token for this feature should have a super admin profile, It can be set in CLI while GUI does not allow. * * !> **Warning:** The resource will be deprecated and replaced by new resource `fortios.system.Vdom`, we recommend that you use the new resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as fortios from "@pulumiverse/fortios"; * * const test2 = new fortios.system.VdomSetting("test2", { * shortName: "aa1122", * temporary: "0", * }); * ``` */ export declare class VdomSetting extends pulumi.CustomResource { /** * Get an existing VdomSetting 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?: VdomSettingState, opts?: pulumi.CustomResourceOptions): VdomSetting; /** * Returns true if the given object is an instance of VdomSetting. 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 VdomSetting; /** * VDOM name. */ readonly name: pulumi.Output<string>; /** * VDOM short name. */ readonly shortName: pulumi.Output<string>; /** * Temporary. */ readonly temporary: pulumi.Output<string>; /** * Create a VdomSetting 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?: VdomSettingArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering VdomSetting resources. */ export interface VdomSettingState { /** * VDOM name. */ name?: pulumi.Input<string>; /** * VDOM short name. */ shortName?: pulumi.Input<string>; /** * Temporary. */ temporary?: pulumi.Input<string>; } /** * The set of arguments for constructing a VdomSetting resource. */ export interface VdomSettingArgs { /** * VDOM name. */ name?: pulumi.Input<string>; /** * VDOM short name. */ shortName?: pulumi.Input<string>; /** * Temporary. */ temporary?: pulumi.Input<string>; }