1. Packages
  2. Cisco Meraki Provider
  3. API Docs
  4. networks
  5. WirelessSsidsDeviceTypeGroupPolicies
Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 by Pulumi

meraki.networks.WirelessSsidsDeviceTypeGroupPolicies

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.WirelessSsidsDeviceTypeGroupPolicies;
import com.pulumi.meraki.networks.WirelessSsidsDeviceTypeGroupPoliciesArgs;
import com.pulumi.meraki.networks.inputs.WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicyArgs;
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 WirelessSsidsDeviceTypeGroupPolicies("example", WirelessSsidsDeviceTypeGroupPoliciesArgs.builder()
            .deviceTypePolicies(WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicyArgs.builder()
                .device_policy("Allowed")
                .device_type("Android")
                .build())
            .enabled(true)
            .networkId("string")
            .number("string")
            .build());

        ctx.export("merakiNetworksWirelessSsidsDeviceTypeGroupPoliciesExample", example);
    }
}
Copy
resources:
  example:
    type: meraki:networks:WirelessSsidsDeviceTypeGroupPolicies
    properties:
      deviceTypePolicies:
        - device_policy: Allowed
          device_type: Android
      enabled: true
      networkId: string
      number: string
outputs:
  merakiNetworksWirelessSsidsDeviceTypeGroupPoliciesExample: ${example}
Copy

Create WirelessSsidsDeviceTypeGroupPolicies Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new WirelessSsidsDeviceTypeGroupPolicies(name: string, args: WirelessSsidsDeviceTypeGroupPoliciesArgs, opts?: CustomResourceOptions);
@overload
def WirelessSsidsDeviceTypeGroupPolicies(resource_name: str,
                                         args: WirelessSsidsDeviceTypeGroupPoliciesArgs,
                                         opts: Optional[ResourceOptions] = None)

@overload
def WirelessSsidsDeviceTypeGroupPolicies(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         network_id: Optional[str] = None,
                                         number: Optional[str] = None,
                                         device_type_policies: Optional[Sequence[WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicyArgs]] = None,
                                         enabled: Optional[bool] = None)
func NewWirelessSsidsDeviceTypeGroupPolicies(ctx *Context, name string, args WirelessSsidsDeviceTypeGroupPoliciesArgs, opts ...ResourceOption) (*WirelessSsidsDeviceTypeGroupPolicies, error)
public WirelessSsidsDeviceTypeGroupPolicies(string name, WirelessSsidsDeviceTypeGroupPoliciesArgs args, CustomResourceOptions? opts = null)
public WirelessSsidsDeviceTypeGroupPolicies(String name, WirelessSsidsDeviceTypeGroupPoliciesArgs args)
public WirelessSsidsDeviceTypeGroupPolicies(String name, WirelessSsidsDeviceTypeGroupPoliciesArgs args, CustomResourceOptions options)
type: meraki:networks:WirelessSsidsDeviceTypeGroupPolicies
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. WirelessSsidsDeviceTypeGroupPoliciesArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. WirelessSsidsDeviceTypeGroupPoliciesArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. WirelessSsidsDeviceTypeGroupPoliciesArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. WirelessSsidsDeviceTypeGroupPoliciesArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. WirelessSsidsDeviceTypeGroupPoliciesArgs
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 wirelessSsidsDeviceTypeGroupPoliciesResource = new Meraki.Networks.WirelessSsidsDeviceTypeGroupPolicies("wirelessSsidsDeviceTypeGroupPoliciesResource", new()
{
    NetworkId = "string",
    Number = "string",
    DeviceTypePolicies = new[]
    {
        new Meraki.Networks.Inputs.WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicyArgs
        {
            DevicePolicy = "string",
            DeviceType = "string",
            GroupPolicyId = 0,
        },
    },
    Enabled = false,
});
Copy
example, err := networks.NewWirelessSsidsDeviceTypeGroupPolicies(ctx, "wirelessSsidsDeviceTypeGroupPoliciesResource", &networks.WirelessSsidsDeviceTypeGroupPoliciesArgs{
	NetworkId: pulumi.String("string"),
	Number:    pulumi.String("string"),
	DeviceTypePolicies: networks.WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicyArray{
		&networks.WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicyArgs{
			DevicePolicy:  pulumi.String("string"),
			DeviceType:    pulumi.String("string"),
			GroupPolicyId: pulumi.Int(0),
		},
	},
	Enabled: pulumi.Bool(false),
})
Copy
var wirelessSsidsDeviceTypeGroupPoliciesResource = new WirelessSsidsDeviceTypeGroupPolicies("wirelessSsidsDeviceTypeGroupPoliciesResource", WirelessSsidsDeviceTypeGroupPoliciesArgs.builder()
    .networkId("string")
    .number("string")
    .deviceTypePolicies(WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicyArgs.builder()
        .devicePolicy("string")
        .deviceType("string")
        .groupPolicyId(0)
        .build())
    .enabled(false)
    .build());
Copy
wireless_ssids_device_type_group_policies_resource = meraki.networks.WirelessSsidsDeviceTypeGroupPolicies("wirelessSsidsDeviceTypeGroupPoliciesResource",
    network_id="string",
    number="string",
    device_type_policies=[{
        "device_policy": "string",
        "device_type": "string",
        "group_policy_id": 0,
    }],
    enabled=False)
Copy
const wirelessSsidsDeviceTypeGroupPoliciesResource = new meraki.networks.WirelessSsidsDeviceTypeGroupPolicies("wirelessSsidsDeviceTypeGroupPoliciesResource", {
    networkId: "string",
    number: "string",
    deviceTypePolicies: [{
        devicePolicy: "string",
        deviceType: "string",
        groupPolicyId: 0,
    }],
    enabled: false,
});
Copy
type: meraki:networks:WirelessSsidsDeviceTypeGroupPolicies
properties:
    deviceTypePolicies:
        - devicePolicy: string
          deviceType: string
          groupPolicyId: 0
    enabled: false
    networkId: string
    number: string
Copy

WirelessSsidsDeviceTypeGroupPolicies Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The WirelessSsidsDeviceTypeGroupPolicies resource accepts the following input properties:

NetworkId This property is required. string
networkId path parameter. Network ID
Number This property is required. string
number path parameter.
DeviceTypePolicies List<WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicy>
List of device type policies.
Enabled bool
If true, the SSID device type group policies are enabled.
NetworkId This property is required. string
networkId path parameter. Network ID
Number This property is required. string
number path parameter.
DeviceTypePolicies []WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicyArgs
List of device type policies.
Enabled bool
If true, the SSID device type group policies are enabled.
networkId This property is required. String
networkId path parameter. Network ID
number This property is required. String
number path parameter.
deviceTypePolicies List<WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicy>
List of device type policies.
enabled Boolean
If true, the SSID device type group policies are enabled.
networkId This property is required. string
networkId path parameter. Network ID
number This property is required. string
number path parameter.
deviceTypePolicies WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicy[]
List of device type policies.
enabled boolean
If true, the SSID device type group policies are enabled.
network_id This property is required. str
networkId path parameter. Network ID
number This property is required. str
number path parameter.
device_type_policies Sequence[WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicyArgs]
List of device type policies.
enabled bool
If true, the SSID device type group policies are enabled.
networkId This property is required. String
networkId path parameter. Network ID
number This property is required. String
number path parameter.
deviceTypePolicies List<Property Map>
List of device type policies.
enabled Boolean
If true, the SSID device type group policies are enabled.

Outputs

All input properties are implicitly available as output properties. Additionally, the WirelessSsidsDeviceTypeGroupPolicies 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 WirelessSsidsDeviceTypeGroupPolicies Resource

Get an existing WirelessSsidsDeviceTypeGroupPolicies 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?: WirelessSsidsDeviceTypeGroupPoliciesState, opts?: CustomResourceOptions): WirelessSsidsDeviceTypeGroupPolicies
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        device_type_policies: Optional[Sequence[WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicyArgs]] = None,
        enabled: Optional[bool] = None,
        network_id: Optional[str] = None,
        number: Optional[str] = None) -> WirelessSsidsDeviceTypeGroupPolicies
func GetWirelessSsidsDeviceTypeGroupPolicies(ctx *Context, name string, id IDInput, state *WirelessSsidsDeviceTypeGroupPoliciesState, opts ...ResourceOption) (*WirelessSsidsDeviceTypeGroupPolicies, error)
public static WirelessSsidsDeviceTypeGroupPolicies Get(string name, Input<string> id, WirelessSsidsDeviceTypeGroupPoliciesState? state, CustomResourceOptions? opts = null)
public static WirelessSsidsDeviceTypeGroupPolicies get(String name, Output<String> id, WirelessSsidsDeviceTypeGroupPoliciesState state, CustomResourceOptions options)
resources:  _:    type: meraki:networks:WirelessSsidsDeviceTypeGroupPolicies    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
DeviceTypePolicies List<WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicy>
List of device type policies.
Enabled bool
If true, the SSID device type group policies are enabled.
NetworkId string
networkId path parameter. Network ID
Number string
number path parameter.
DeviceTypePolicies []WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicyArgs
List of device type policies.
Enabled bool
If true, the SSID device type group policies are enabled.
NetworkId string
networkId path parameter. Network ID
Number string
number path parameter.
deviceTypePolicies List<WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicy>
List of device type policies.
enabled Boolean
If true, the SSID device type group policies are enabled.
networkId String
networkId path parameter. Network ID
number String
number path parameter.
deviceTypePolicies WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicy[]
List of device type policies.
enabled boolean
If true, the SSID device type group policies are enabled.
networkId string
networkId path parameter. Network ID
number string
number path parameter.
device_type_policies Sequence[WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicyArgs]
List of device type policies.
enabled bool
If true, the SSID device type group policies are enabled.
network_id str
networkId path parameter. Network ID
number str
number path parameter.
deviceTypePolicies List<Property Map>
List of device type policies.
enabled Boolean
If true, the SSID device type group policies are enabled.
networkId String
networkId path parameter. Network ID
number String
number path parameter.

Supporting Types

WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicy
, WirelessSsidsDeviceTypeGroupPoliciesDeviceTypePolicyArgs

DevicePolicy string
The device policy. Can be one of 'Allowed', 'Blocked' or 'Group policy'
DeviceType string
The device type. Can be one of 'Android', 'BlackBerry', 'Chrome OS', 'iPad', 'iPhone', 'iPod', 'Mac OS X', 'Windows', 'Windows Phone', 'B&N Nook' or 'Other OS'
GroupPolicyId int
ID of the group policy object.
DevicePolicy string
The device policy. Can be one of 'Allowed', 'Blocked' or 'Group policy'
DeviceType string
The device type. Can be one of 'Android', 'BlackBerry', 'Chrome OS', 'iPad', 'iPhone', 'iPod', 'Mac OS X', 'Windows', 'Windows Phone', 'B&N Nook' or 'Other OS'
GroupPolicyId int
ID of the group policy object.
devicePolicy String
The device policy. Can be one of 'Allowed', 'Blocked' or 'Group policy'
deviceType String
The device type. Can be one of 'Android', 'BlackBerry', 'Chrome OS', 'iPad', 'iPhone', 'iPod', 'Mac OS X', 'Windows', 'Windows Phone', 'B&N Nook' or 'Other OS'
groupPolicyId Integer
ID of the group policy object.
devicePolicy string
The device policy. Can be one of 'Allowed', 'Blocked' or 'Group policy'
deviceType string
The device type. Can be one of 'Android', 'BlackBerry', 'Chrome OS', 'iPad', 'iPhone', 'iPod', 'Mac OS X', 'Windows', 'Windows Phone', 'B&N Nook' or 'Other OS'
groupPolicyId number
ID of the group policy object.
device_policy str
The device policy. Can be one of 'Allowed', 'Blocked' or 'Group policy'
device_type str
The device type. Can be one of 'Android', 'BlackBerry', 'Chrome OS', 'iPad', 'iPhone', 'iPod', 'Mac OS X', 'Windows', 'Windows Phone', 'B&N Nook' or 'Other OS'
group_policy_id int
ID of the group policy object.
devicePolicy String
The device policy. Can be one of 'Allowed', 'Blocked' or 'Group policy'
deviceType String
The device type. Can be one of 'Android', 'BlackBerry', 'Chrome OS', 'iPad', 'iPhone', 'iPod', 'Mac OS X', 'Windows', 'Windows Phone', 'B&N Nook' or 'Other OS'
groupPolicyId Number
ID of the group policy object.

Import

$ pulumi import meraki:networks/wirelessSsidsDeviceTypeGroupPolicies:WirelessSsidsDeviceTypeGroupPolicies example "network_id,number"
Copy

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.