UNPKG

@pulumi/meraki

Version:

A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0

168 lines (167 loc) 6.19 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * ## Example Usage * * ## Import * * ```sh * $ pulumi import meraki:networks/wirelessSsidsHotspot20:WirelessSsidsHotspot20 example "network_id,number" * ``` */ export declare 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: string, id: pulumi.Input<pulumi.ID>, state?: WirelessSsidsHotspot20State, opts?: pulumi.CustomResourceOptions): WirelessSsidsHotspot20; /** * 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: any): obj is WirelessSsidsHotspot20; /** * An array of domain names */ readonly domains: pulumi.Output<string[]>; /** * Whether or not Hotspot 2.0 for this SSID is enabled */ readonly enabled: pulumi.Output<boolean>; /** * An array of MCC/MNC pairs */ readonly mccMncs: pulumi.Output<outputs.networks.WirelessSsidsHotspot20MccMnc[]>; /** * An array of NAI realms */ readonly naiRealms: pulumi.Output<outputs.networks.WirelessSsidsHotspot20NaiRealm[]>; /** * The network type of this SSID ('Private network', 'Private network with guest access', 'Chargeable public network', 'Free public network', 'Personal device network', 'Emergency services only network', 'Test or experimental', 'Wildcard') */ readonly networkAccessType: pulumi.Output<string>; /** * networkId path parameter. Network ID */ readonly networkId: pulumi.Output<string>; /** * number path parameter. */ readonly number: pulumi.Output<string>; /** * Operator settings for this SSID */ readonly operator: pulumi.Output<outputs.networks.WirelessSsidsHotspot20Operator>; /** * An array of roaming consortium OIs (hexadecimal number 3-5 octets in length) */ readonly roamConsortOis: pulumi.Output<string[]>; /** * Venue settings for this SSID */ readonly venue: pulumi.Output<outputs.networks.WirelessSsidsHotspot20Venue>; /** * Create a WirelessSsidsHotspot20 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: WirelessSsidsHotspot20Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering WirelessSsidsHotspot20 resources. */ export interface WirelessSsidsHotspot20State { /** * An array of domain names */ domains?: pulumi.Input<pulumi.Input<string>[]>; /** * Whether or not Hotspot 2.0 for this SSID is enabled */ enabled?: pulumi.Input<boolean>; /** * An array of MCC/MNC pairs */ mccMncs?: pulumi.Input<pulumi.Input<inputs.networks.WirelessSsidsHotspot20MccMnc>[]>; /** * An array of NAI realms */ naiRealms?: pulumi.Input<pulumi.Input<inputs.networks.WirelessSsidsHotspot20NaiRealm>[]>; /** * The network type of this SSID ('Private network', 'Private network with guest access', 'Chargeable public network', 'Free public network', 'Personal device network', 'Emergency services only network', 'Test or experimental', 'Wildcard') */ networkAccessType?: pulumi.Input<string>; /** * networkId path parameter. Network ID */ networkId?: pulumi.Input<string>; /** * number path parameter. */ number?: pulumi.Input<string>; /** * Operator settings for this SSID */ operator?: pulumi.Input<inputs.networks.WirelessSsidsHotspot20Operator>; /** * An array of roaming consortium OIs (hexadecimal number 3-5 octets in length) */ roamConsortOis?: pulumi.Input<pulumi.Input<string>[]>; /** * Venue settings for this SSID */ venue?: pulumi.Input<inputs.networks.WirelessSsidsHotspot20Venue>; } /** * The set of arguments for constructing a WirelessSsidsHotspot20 resource. */ export interface WirelessSsidsHotspot20Args { /** * An array of domain names */ domains?: pulumi.Input<pulumi.Input<string>[]>; /** * Whether or not Hotspot 2.0 for this SSID is enabled */ enabled?: pulumi.Input<boolean>; /** * An array of MCC/MNC pairs */ mccMncs?: pulumi.Input<pulumi.Input<inputs.networks.WirelessSsidsHotspot20MccMnc>[]>; /** * An array of NAI realms */ naiRealms?: pulumi.Input<pulumi.Input<inputs.networks.WirelessSsidsHotspot20NaiRealm>[]>; /** * The network type of this SSID ('Private network', 'Private network with guest access', 'Chargeable public network', 'Free public network', 'Personal device network', 'Emergency services only network', 'Test or experimental', 'Wildcard') */ networkAccessType?: pulumi.Input<string>; /** * networkId path parameter. Network ID */ networkId: pulumi.Input<string>; /** * number path parameter. */ number: pulumi.Input<string>; /** * Operator settings for this SSID */ operator?: pulumi.Input<inputs.networks.WirelessSsidsHotspot20Operator>; /** * An array of roaming consortium OIs (hexadecimal number 3-5 octets in length) */ roamConsortOis?: pulumi.Input<pulumi.Input<string>[]>; /** * Venue settings for this SSID */ venue?: pulumi.Input<inputs.networks.WirelessSsidsHotspot20Venue>; }