@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
108 lines (107 loc) • 4.26 kB
TypeScript
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/applianceSingleLan:ApplianceSingleLan example "network_id"
* ```
*/
export declare class ApplianceSingleLan extends pulumi.CustomResource {
/**
* Get an existing ApplianceSingleLan 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?: ApplianceSingleLanState, opts?: pulumi.CustomResourceOptions): ApplianceSingleLan;
/**
* Returns true if the given object is an instance of ApplianceSingleLan. 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 ApplianceSingleLan;
/**
* The local IP of the appliance on the single LAN
*/
readonly applianceIp: pulumi.Output<string>;
/**
* IPv6 configuration on the single LAN
*/
readonly ipv6: pulumi.Output<outputs.networks.ApplianceSingleLanIpv6>;
/**
* Mandatory DHCP will enforce that clients connecting to this single LAN must use the IP address assigned by the DHCP server. Clients who use a static IP address won't be able to associate. Only available on firmware versions 17.0 and above
*/
readonly mandatoryDhcp: pulumi.Output<outputs.networks.ApplianceSingleLanMandatoryDhcp>;
/**
* networkId path parameter. Network ID
*/
readonly networkId: pulumi.Output<string>;
/**
* The subnet of the single LAN
*/
readonly subnet: pulumi.Output<string>;
/**
* Create a ApplianceSingleLan 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: ApplianceSingleLanArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering ApplianceSingleLan resources.
*/
export interface ApplianceSingleLanState {
/**
* The local IP of the appliance on the single LAN
*/
applianceIp?: pulumi.Input<string>;
/**
* IPv6 configuration on the single LAN
*/
ipv6?: pulumi.Input<inputs.networks.ApplianceSingleLanIpv6>;
/**
* Mandatory DHCP will enforce that clients connecting to this single LAN must use the IP address assigned by the DHCP server. Clients who use a static IP address won't be able to associate. Only available on firmware versions 17.0 and above
*/
mandatoryDhcp?: pulumi.Input<inputs.networks.ApplianceSingleLanMandatoryDhcp>;
/**
* networkId path parameter. Network ID
*/
networkId?: pulumi.Input<string>;
/**
* The subnet of the single LAN
*/
subnet?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a ApplianceSingleLan resource.
*/
export interface ApplianceSingleLanArgs {
/**
* The local IP of the appliance on the single LAN
*/
applianceIp?: pulumi.Input<string>;
/**
* IPv6 configuration on the single LAN
*/
ipv6?: pulumi.Input<inputs.networks.ApplianceSingleLanIpv6>;
/**
* Mandatory DHCP will enforce that clients connecting to this single LAN must use the IP address assigned by the DHCP server. Clients who use a static IP address won't be able to associate. Only available on firmware versions 17.0 and above
*/
mandatoryDhcp?: pulumi.Input<inputs.networks.ApplianceSingleLanMandatoryDhcp>;
/**
* networkId path parameter. Network ID
*/
networkId: pulumi.Input<string>;
/**
* The subnet of the single LAN
*/
subnet?: pulumi.Input<string>;
}