meraki.networks.WirelessSsidsBonjourForwarding
Explore with Pulumi AI
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.networks.WirelessSsidsBonjourForwarding;
import com.pulumi.meraki.networks.WirelessSsidsBonjourForwardingArgs;
import com.pulumi.meraki.networks.inputs.WirelessSsidsBonjourForwardingExceptionArgs;
import com.pulumi.meraki.networks.inputs.WirelessSsidsBonjourForwardingRuleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new WirelessSsidsBonjourForwarding("example", WirelessSsidsBonjourForwardingArgs.builder()
.enabled(true)
.exception(WirelessSsidsBonjourForwardingExceptionArgs.builder()
.enabled(true)
.build())
.networkId("string")
.number("string")
.rules(WirelessSsidsBonjourForwardingRuleArgs.builder()
.description("A simple bonjour rule")
.services("All Services")
.vlan_id("1")
.build())
.build());
ctx.export("merakiNetworksWirelessSsidsBonjourForwardingExample", example);
}
}
resources:
example:
type: meraki:networks:WirelessSsidsBonjourForwarding
properties:
enabled: true
exception:
enabled: true
networkId: string
number: string
rules:
- description: A simple bonjour rule
services:
- All Services
vlan_id: '1'
outputs:
merakiNetworksWirelessSsidsBonjourForwardingExample: ${example}
Create WirelessSsidsBonjourForwarding Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WirelessSsidsBonjourForwarding(name: string, args: WirelessSsidsBonjourForwardingArgs, opts?: CustomResourceOptions);
@overload
def WirelessSsidsBonjourForwarding(resource_name: str,
args: WirelessSsidsBonjourForwardingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WirelessSsidsBonjourForwarding(resource_name: str,
opts: Optional[ResourceOptions] = None,
network_id: Optional[str] = None,
number: Optional[str] = None,
enabled: Optional[bool] = None,
exception: Optional[WirelessSsidsBonjourForwardingExceptionArgs] = None,
rules: Optional[Sequence[WirelessSsidsBonjourForwardingRuleArgs]] = None)
func NewWirelessSsidsBonjourForwarding(ctx *Context, name string, args WirelessSsidsBonjourForwardingArgs, opts ...ResourceOption) (*WirelessSsidsBonjourForwarding, error)
public WirelessSsidsBonjourForwarding(string name, WirelessSsidsBonjourForwardingArgs args, CustomResourceOptions? opts = null)
public WirelessSsidsBonjourForwarding(String name, WirelessSsidsBonjourForwardingArgs args)
public WirelessSsidsBonjourForwarding(String name, WirelessSsidsBonjourForwardingArgs args, CustomResourceOptions options)
type: meraki:networks:WirelessSsidsBonjourForwarding
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args WirelessSsidsBonjourForwardingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args WirelessSsidsBonjourForwardingArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WirelessSsidsBonjourForwardingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WirelessSsidsBonjourForwardingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WirelessSsidsBonjourForwardingArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var wirelessSsidsBonjourForwardingResource = new Meraki.Networks.WirelessSsidsBonjourForwarding("wirelessSsidsBonjourForwardingResource", new()
{
NetworkId = "string",
Number = "string",
Enabled = false,
Exception = new Meraki.Networks.Inputs.WirelessSsidsBonjourForwardingExceptionArgs
{
Enabled = false,
},
Rules = new[]
{
new Meraki.Networks.Inputs.WirelessSsidsBonjourForwardingRuleArgs
{
Description = "string",
Services = new[]
{
"string",
},
VlanId = "string",
},
},
});
example, err := networks.NewWirelessSsidsBonjourForwarding(ctx, "wirelessSsidsBonjourForwardingResource", &networks.WirelessSsidsBonjourForwardingArgs{
NetworkId: pulumi.String("string"),
Number: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Exception: &networks.WirelessSsidsBonjourForwardingExceptionArgs{
Enabled: pulumi.Bool(false),
},
Rules: networks.WirelessSsidsBonjourForwardingRuleArray{
&networks.WirelessSsidsBonjourForwardingRuleArgs{
Description: pulumi.String("string"),
Services: pulumi.StringArray{
pulumi.String("string"),
},
VlanId: pulumi.String("string"),
},
},
})
var wirelessSsidsBonjourForwardingResource = new WirelessSsidsBonjourForwarding("wirelessSsidsBonjourForwardingResource", WirelessSsidsBonjourForwardingArgs.builder()
.networkId("string")
.number("string")
.enabled(false)
.exception(WirelessSsidsBonjourForwardingExceptionArgs.builder()
.enabled(false)
.build())
.rules(WirelessSsidsBonjourForwardingRuleArgs.builder()
.description("string")
.services("string")
.vlanId("string")
.build())
.build());
wireless_ssids_bonjour_forwarding_resource = meraki.networks.WirelessSsidsBonjourForwarding("wirelessSsidsBonjourForwardingResource",
network_id="string",
number="string",
enabled=False,
exception=meraki.networks.WirelessSsidsBonjourForwardingExceptionArgs(
enabled=False,
),
rules=[meraki.networks.WirelessSsidsBonjourForwardingRuleArgs(
description="string",
services=["string"],
vlan_id="string",
)])
const wirelessSsidsBonjourForwardingResource = new meraki.networks.WirelessSsidsBonjourForwarding("wirelessSsidsBonjourForwardingResource", {
networkId: "string",
number: "string",
enabled: false,
exception: {
enabled: false,
},
rules: [{
description: "string",
services: ["string"],
vlanId: "string",
}],
});
type: meraki:networks:WirelessSsidsBonjourForwarding
properties:
enabled: false
exception:
enabled: false
networkId: string
number: string
rules:
- description: string
services:
- string
vlanId: string
WirelessSsidsBonjourForwarding Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The WirelessSsidsBonjourForwarding resource accepts the following input properties:
- Network
Id string - networkId path parameter. Network ID
- Number string
- number path parameter.
- Enabled bool
- If true, Bonjour forwarding is enabled on the SSID.
- Exception
Wireless
Ssids Bonjour Forwarding Exception - Bonjour forwarding exception
- Rules
List<Wireless
Ssids Bonjour Forwarding Rule> - Bonjour forwarding rules
- Network
Id string - networkId path parameter. Network ID
- Number string
- number path parameter.
- Enabled bool
- If true, Bonjour forwarding is enabled on the SSID.
- Exception
Wireless
Ssids Bonjour Forwarding Exception Args - Bonjour forwarding exception
- Rules
[]Wireless
Ssids Bonjour Forwarding Rule Args - Bonjour forwarding rules
- network
Id String - networkId path parameter. Network ID
- number String
- number path parameter.
- enabled Boolean
- If true, Bonjour forwarding is enabled on the SSID.
- exception
Wireless
Ssids Bonjour Forwarding Exception - Bonjour forwarding exception
- rules
List<Wireless
Ssids Bonjour Forwarding Rule> - Bonjour forwarding rules
- network
Id string - networkId path parameter. Network ID
- number string
- number path parameter.
- enabled boolean
- If true, Bonjour forwarding is enabled on the SSID.
- exception
Wireless
Ssids Bonjour Forwarding Exception - Bonjour forwarding exception
- rules
Wireless
Ssids Bonjour Forwarding Rule[] - Bonjour forwarding rules
- network_
id str - networkId path parameter. Network ID
- number str
- number path parameter.
- enabled bool
- If true, Bonjour forwarding is enabled on the SSID.
- exception
Wireless
Ssids Bonjour Forwarding Exception Args - Bonjour forwarding exception
- rules
Sequence[Wireless
Ssids Bonjour Forwarding Rule Args] - Bonjour forwarding rules
- network
Id String - networkId path parameter. Network ID
- number String
- number path parameter.
- enabled Boolean
- If true, Bonjour forwarding is enabled on the SSID.
- exception Property Map
- Bonjour forwarding exception
- rules List<Property Map>
- Bonjour forwarding rules
Outputs
All input properties are implicitly available as output properties. Additionally, the WirelessSsidsBonjourForwarding resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing WirelessSsidsBonjourForwarding Resource
Get an existing WirelessSsidsBonjourForwarding resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: WirelessSsidsBonjourForwardingState, opts?: CustomResourceOptions): WirelessSsidsBonjourForwarding
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
exception: Optional[WirelessSsidsBonjourForwardingExceptionArgs] = None,
network_id: Optional[str] = None,
number: Optional[str] = None,
rules: Optional[Sequence[WirelessSsidsBonjourForwardingRuleArgs]] = None) -> WirelessSsidsBonjourForwarding
func GetWirelessSsidsBonjourForwarding(ctx *Context, name string, id IDInput, state *WirelessSsidsBonjourForwardingState, opts ...ResourceOption) (*WirelessSsidsBonjourForwarding, error)
public static WirelessSsidsBonjourForwarding Get(string name, Input<string> id, WirelessSsidsBonjourForwardingState? state, CustomResourceOptions? opts = null)
public static WirelessSsidsBonjourForwarding get(String name, Output<String> id, WirelessSsidsBonjourForwardingState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Enabled bool
- If true, Bonjour forwarding is enabled on the SSID.
- Exception
Wireless
Ssids Bonjour Forwarding Exception - Bonjour forwarding exception
- Network
Id string - networkId path parameter. Network ID
- Number string
- number path parameter.
- Rules
List<Wireless
Ssids Bonjour Forwarding Rule> - Bonjour forwarding rules
- Enabled bool
- If true, Bonjour forwarding is enabled on the SSID.
- Exception
Wireless
Ssids Bonjour Forwarding Exception Args - Bonjour forwarding exception
- Network
Id string - networkId path parameter. Network ID
- Number string
- number path parameter.
- Rules
[]Wireless
Ssids Bonjour Forwarding Rule Args - Bonjour forwarding rules
- enabled Boolean
- If true, Bonjour forwarding is enabled on the SSID.
- exception
Wireless
Ssids Bonjour Forwarding Exception - Bonjour forwarding exception
- network
Id String - networkId path parameter. Network ID
- number String
- number path parameter.
- rules
List<Wireless
Ssids Bonjour Forwarding Rule> - Bonjour forwarding rules
- enabled boolean
- If true, Bonjour forwarding is enabled on the SSID.
- exception
Wireless
Ssids Bonjour Forwarding Exception - Bonjour forwarding exception
- network
Id string - networkId path parameter. Network ID
- number string
- number path parameter.
- rules
Wireless
Ssids Bonjour Forwarding Rule[] - Bonjour forwarding rules
- enabled bool
- If true, Bonjour forwarding is enabled on the SSID.
- exception
Wireless
Ssids Bonjour Forwarding Exception Args - Bonjour forwarding exception
- network_
id str - networkId path parameter. Network ID
- number str
- number path parameter.
- rules
Sequence[Wireless
Ssids Bonjour Forwarding Rule Args] - Bonjour forwarding rules
- enabled Boolean
- If true, Bonjour forwarding is enabled on the SSID.
- exception Property Map
- Bonjour forwarding exception
- network
Id String - networkId path parameter. Network ID
- number String
- number path parameter.
- rules List<Property Map>
- Bonjour forwarding rules
Supporting Types
WirelessSsidsBonjourForwardingException, WirelessSsidsBonjourForwardingExceptionArgs
- Enabled bool
- If true, Bonjour forwarding exception is enabled on this SSID. Exception is required to enable L2 isolation and Bonjour forwarding to work together.
- Enabled bool
- If true, Bonjour forwarding exception is enabled on this SSID. Exception is required to enable L2 isolation and Bonjour forwarding to work together.
- enabled Boolean
- If true, Bonjour forwarding exception is enabled on this SSID. Exception is required to enable L2 isolation and Bonjour forwarding to work together.
- enabled boolean
- If true, Bonjour forwarding exception is enabled on this SSID. Exception is required to enable L2 isolation and Bonjour forwarding to work together.
- enabled bool
- If true, Bonjour forwarding exception is enabled on this SSID. Exception is required to enable L2 isolation and Bonjour forwarding to work together.
- enabled Boolean
- If true, Bonjour forwarding exception is enabled on this SSID. Exception is required to enable L2 isolation and Bonjour forwarding to work together.
WirelessSsidsBonjourForwardingRule, WirelessSsidsBonjourForwardingRuleArgs
- Description string
- Desctiption of the bonjour forwarding rule
- Services List<string>
- A list of Bonjour services. At least one service must be specified. Available services are 'All Services', 'AirPlay', 'AFP', 'BitTorrent', 'FTP', 'iChat', 'iTunes', 'Printers', 'Samba', 'Scanners' and 'SSH'
- Vlan
Id string - The ID of the service VLAN. Required
- Description string
- Desctiption of the bonjour forwarding rule
- Services []string
- A list of Bonjour services. At least one service must be specified. Available services are 'All Services', 'AirPlay', 'AFP', 'BitTorrent', 'FTP', 'iChat', 'iTunes', 'Printers', 'Samba', 'Scanners' and 'SSH'
- Vlan
Id string - The ID of the service VLAN. Required
- description String
- Desctiption of the bonjour forwarding rule
- services List<String>
- A list of Bonjour services. At least one service must be specified. Available services are 'All Services', 'AirPlay', 'AFP', 'BitTorrent', 'FTP', 'iChat', 'iTunes', 'Printers', 'Samba', 'Scanners' and 'SSH'
- vlan
Id String - The ID of the service VLAN. Required
- description string
- Desctiption of the bonjour forwarding rule
- services string[]
- A list of Bonjour services. At least one service must be specified. Available services are 'All Services', 'AirPlay', 'AFP', 'BitTorrent', 'FTP', 'iChat', 'iTunes', 'Printers', 'Samba', 'Scanners' and 'SSH'
- vlan
Id string - The ID of the service VLAN. Required
- description str
- Desctiption of the bonjour forwarding rule
- services Sequence[str]
- A list of Bonjour services. At least one service must be specified. Available services are 'All Services', 'AirPlay', 'AFP', 'BitTorrent', 'FTP', 'iChat', 'iTunes', 'Printers', 'Samba', 'Scanners' and 'SSH'
- vlan_
id str - The ID of the service VLAN. Required
- description String
- Desctiption of the bonjour forwarding rule
- services List<String>
- A list of Bonjour services. At least one service must be specified. Available services are 'All Services', 'AirPlay', 'AFP', 'BitTorrent', 'FTP', 'iChat', 'iTunes', 'Printers', 'Samba', 'Scanners' and 'SSH'
- vlan
Id String - The ID of the service VLAN. Required
Import
$ pulumi import meraki:networks/wirelessSsidsBonjourForwarding:WirelessSsidsBonjourForwarding example "network_id,number"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.