@pulumiverse/fortios
Version:
A Pulumi package for creating and managing Fortios resources. Based on terraform-provider-fortios: version v1.16.0
126 lines • 7.61 kB
JavaScript
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.Timers = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Configure CAPWAP timers.
*
* ## Import
*
* WirelessController Timers can be imported using any of these accepted formats:
*
* ```sh
* $ pulumi import fortios:wirelesscontroller/timers:Timers labelname WirelessControllerTimers
* ```
*
* If you do not want to import arguments of block:
*
* $ export "FORTIOS_IMPORT_TABLE"="false"
*
* ```sh
* $ pulumi import fortios:wirelesscontroller/timers:Timers labelname WirelessControllerTimers
* ```
*
* $ unset "FORTIOS_IMPORT_TABLE"
*/
class Timers extends pulumi.CustomResource {
/**
* Get an existing Timers 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, id, state, opts) {
return new Timers(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of Timers. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === Timers.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["apRebootWaitInterval1"] = state ? state.apRebootWaitInterval1 : undefined;
resourceInputs["apRebootWaitInterval2"] = state ? state.apRebootWaitInterval2 : undefined;
resourceInputs["apRebootWaitTime"] = state ? state.apRebootWaitTime : undefined;
resourceInputs["authTimeout"] = state ? state.authTimeout : undefined;
resourceInputs["bleDeviceCleanup"] = state ? state.bleDeviceCleanup : undefined;
resourceInputs["bleScanReportIntv"] = state ? state.bleScanReportIntv : undefined;
resourceInputs["clientIdleRehomeTimeout"] = state ? state.clientIdleRehomeTimeout : undefined;
resourceInputs["clientIdleTimeout"] = state ? state.clientIdleTimeout : undefined;
resourceInputs["darrpDay"] = state ? state.darrpDay : undefined;
resourceInputs["darrpOptimize"] = state ? state.darrpOptimize : undefined;
resourceInputs["darrpTimes"] = state ? state.darrpTimes : undefined;
resourceInputs["discoveryInterval"] = state ? state.discoveryInterval : undefined;
resourceInputs["drmaInterval"] = state ? state.drmaInterval : undefined;
resourceInputs["dynamicSortSubtable"] = state ? state.dynamicSortSubtable : undefined;
resourceInputs["echoInterval"] = state ? state.echoInterval : undefined;
resourceInputs["fakeApLog"] = state ? state.fakeApLog : undefined;
resourceInputs["getAllTables"] = state ? state.getAllTables : undefined;
resourceInputs["ipsecIntfCleanup"] = state ? state.ipsecIntfCleanup : undefined;
resourceInputs["natSessionKeepAlive"] = state ? state.natSessionKeepAlive : undefined;
resourceInputs["radioStatsInterval"] = state ? state.radioStatsInterval : undefined;
resourceInputs["rogueApCleanup"] = state ? state.rogueApCleanup : undefined;
resourceInputs["rogueApLog"] = state ? state.rogueApLog : undefined;
resourceInputs["rogueStaCleanup"] = state ? state.rogueStaCleanup : undefined;
resourceInputs["staCapCleanup"] = state ? state.staCapCleanup : undefined;
resourceInputs["staCapabilityInterval"] = state ? state.staCapabilityInterval : undefined;
resourceInputs["staLocateTimer"] = state ? state.staLocateTimer : undefined;
resourceInputs["staStatsInterval"] = state ? state.staStatsInterval : undefined;
resourceInputs["vapStatsInterval"] = state ? state.vapStatsInterval : undefined;
resourceInputs["vdomparam"] = state ? state.vdomparam : undefined;
}
else {
const args = argsOrState;
resourceInputs["apRebootWaitInterval1"] = args ? args.apRebootWaitInterval1 : undefined;
resourceInputs["apRebootWaitInterval2"] = args ? args.apRebootWaitInterval2 : undefined;
resourceInputs["apRebootWaitTime"] = args ? args.apRebootWaitTime : undefined;
resourceInputs["authTimeout"] = args ? args.authTimeout : undefined;
resourceInputs["bleDeviceCleanup"] = args ? args.bleDeviceCleanup : undefined;
resourceInputs["bleScanReportIntv"] = args ? args.bleScanReportIntv : undefined;
resourceInputs["clientIdleRehomeTimeout"] = args ? args.clientIdleRehomeTimeout : undefined;
resourceInputs["clientIdleTimeout"] = args ? args.clientIdleTimeout : undefined;
resourceInputs["darrpDay"] = args ? args.darrpDay : undefined;
resourceInputs["darrpOptimize"] = args ? args.darrpOptimize : undefined;
resourceInputs["darrpTimes"] = args ? args.darrpTimes : undefined;
resourceInputs["discoveryInterval"] = args ? args.discoveryInterval : undefined;
resourceInputs["drmaInterval"] = args ? args.drmaInterval : undefined;
resourceInputs["dynamicSortSubtable"] = args ? args.dynamicSortSubtable : undefined;
resourceInputs["echoInterval"] = args ? args.echoInterval : undefined;
resourceInputs["fakeApLog"] = args ? args.fakeApLog : undefined;
resourceInputs["getAllTables"] = args ? args.getAllTables : undefined;
resourceInputs["ipsecIntfCleanup"] = args ? args.ipsecIntfCleanup : undefined;
resourceInputs["natSessionKeepAlive"] = args ? args.natSessionKeepAlive : undefined;
resourceInputs["radioStatsInterval"] = args ? args.radioStatsInterval : undefined;
resourceInputs["rogueApCleanup"] = args ? args.rogueApCleanup : undefined;
resourceInputs["rogueApLog"] = args ? args.rogueApLog : undefined;
resourceInputs["rogueStaCleanup"] = args ? args.rogueStaCleanup : undefined;
resourceInputs["staCapCleanup"] = args ? args.staCapCleanup : undefined;
resourceInputs["staCapabilityInterval"] = args ? args.staCapabilityInterval : undefined;
resourceInputs["staLocateTimer"] = args ? args.staLocateTimer : undefined;
resourceInputs["staStatsInterval"] = args ? args.staStatsInterval : undefined;
resourceInputs["vapStatsInterval"] = args ? args.vapStatsInterval : undefined;
resourceInputs["vdomparam"] = args ? args.vdomparam : undefined;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(Timers.__pulumiType, name, resourceInputs, opts);
}
}
exports.Timers = Timers;
/** @internal */
Timers.__pulumiType = 'fortios:wirelesscontroller/timers:Timers';
//# sourceMappingURL=timers.js.map
;