@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
82 lines • 4.13 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.WirelessSsidsHotspot20 = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* ## Example Usage
*
* ## Import
*
* ```sh
* $ pulumi import meraki:networks/wirelessSsidsHotspot20:WirelessSsidsHotspot20 example "network_id,number"
* ```
*/
class WirelessSsidsHotspot20 extends pulumi.CustomResource {
/**
* Get an existing WirelessSsidsHotspot20 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 WirelessSsidsHotspot20(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of WirelessSsidsHotspot20. 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'] === WirelessSsidsHotspot20.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["domains"] = state ? state.domains : undefined;
resourceInputs["enabled"] = state ? state.enabled : undefined;
resourceInputs["mccMncs"] = state ? state.mccMncs : undefined;
resourceInputs["naiRealms"] = state ? state.naiRealms : undefined;
resourceInputs["networkAccessType"] = state ? state.networkAccessType : undefined;
resourceInputs["networkId"] = state ? state.networkId : undefined;
resourceInputs["number"] = state ? state.number : undefined;
resourceInputs["operator"] = state ? state.operator : undefined;
resourceInputs["roamConsortOis"] = state ? state.roamConsortOis : undefined;
resourceInputs["venue"] = state ? state.venue : undefined;
}
else {
const args = argsOrState;
if ((!args || args.networkId === undefined) && !opts.urn) {
throw new Error("Missing required property 'networkId'");
}
if ((!args || args.number === undefined) && !opts.urn) {
throw new Error("Missing required property 'number'");
}
resourceInputs["domains"] = args ? args.domains : undefined;
resourceInputs["enabled"] = args ? args.enabled : undefined;
resourceInputs["mccMncs"] = args ? args.mccMncs : undefined;
resourceInputs["naiRealms"] = args ? args.naiRealms : undefined;
resourceInputs["networkAccessType"] = args ? args.networkAccessType : undefined;
resourceInputs["networkId"] = args ? args.networkId : undefined;
resourceInputs["number"] = args ? args.number : undefined;
resourceInputs["operator"] = args ? args.operator : undefined;
resourceInputs["roamConsortOis"] = args ? args.roamConsortOis : undefined;
resourceInputs["venue"] = args ? args.venue : undefined;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(WirelessSsidsHotspot20.__pulumiType, name, resourceInputs, opts);
}
}
exports.WirelessSsidsHotspot20 = WirelessSsidsHotspot20;
/** @internal */
WirelessSsidsHotspot20.__pulumiType = 'meraki:networks/wirelessSsidsHotspot20:WirelessSsidsHotspot20';
//# sourceMappingURL=wirelessSsidsHotspot20.js.map