1. Packages
  2. Cisco Meraki Provider
  3. API Docs
  4. networks
  5. getPiiSmDevicesForKey
Cisco Meraki v0.4.4 published on Wednesday, Oct 22, 2025 by Pulumi

meraki.networks.getPiiSmDevicesForKey

Start a Neo task
Explain and create a meraki.networks.getPiiSmDevicesForKey resource
meraki logo
Cisco Meraki v0.4.4 published on Wednesday, Oct 22, 2025 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as meraki from "@pulumi/meraki";
    
    const example = meraki.networks.getPiiSmDevicesForKey({
        bluetoothMac: "string",
        email: "string",
        imei: "string",
        mac: "string",
        networkId: "string",
        serial: "string",
        username: "string",
    });
    export const merakiNetworksPiiSmDevicesForKeyExample = example.then(example => example.item);
    
    import pulumi
    import pulumi_meraki as meraki
    
    example = meraki.networks.get_pii_sm_devices_for_key(bluetooth_mac="string",
        email="string",
        imei="string",
        mac="string",
        network_id="string",
        serial="string",
        username="string")
    pulumi.export("merakiNetworksPiiSmDevicesForKeyExample", example.item)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/networks"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := networks.GetPiiSmDevicesForKey(ctx, &networks.GetPiiSmDevicesForKeyArgs{
    			BluetoothMac: pulumi.StringRef("string"),
    			Email:        pulumi.StringRef("string"),
    			Imei:         pulumi.StringRef("string"),
    			Mac:          pulumi.StringRef("string"),
    			NetworkId:    "string",
    			Serial:       pulumi.StringRef("string"),
    			Username:     pulumi.StringRef("string"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("merakiNetworksPiiSmDevicesForKeyExample", example.Item)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Meraki = Pulumi.Meraki;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Meraki.Networks.GetPiiSmDevicesForKey.Invoke(new()
        {
            BluetoothMac = "string",
            Email = "string",
            Imei = "string",
            Mac = "string",
            NetworkId = "string",
            Serial = "string",
            Username = "string",
        });
    
        return new Dictionary<string, object?>
        {
            ["merakiNetworksPiiSmDevicesForKeyExample"] = example.Apply(getPiiSmDevicesForKeyResult => getPiiSmDevicesForKeyResult.Item),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.meraki.networks.NetworksFunctions;
    import com.pulumi.meraki.networks.inputs.GetPiiSmDevicesForKeyArgs;
    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) {
            final var example = NetworksFunctions.getPiiSmDevicesForKey(GetPiiSmDevicesForKeyArgs.builder()
                .bluetoothMac("string")
                .email("string")
                .imei("string")
                .mac("string")
                .networkId("string")
                .serial("string")
                .username("string")
                .build());
    
            ctx.export("merakiNetworksPiiSmDevicesForKeyExample", example.item());
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: meraki:networks:getPiiSmDevicesForKey
          arguments:
            bluetoothMac: string
            email: string
            imei: string
            mac: string
            networkId: string
            serial: string
            username: string
    outputs:
      merakiNetworksPiiSmDevicesForKeyExample: ${example.item}
    

    Using getPiiSmDevicesForKey

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getPiiSmDevicesForKey(args: GetPiiSmDevicesForKeyArgs, opts?: InvokeOptions): Promise<GetPiiSmDevicesForKeyResult>
    function getPiiSmDevicesForKeyOutput(args: GetPiiSmDevicesForKeyOutputArgs, opts?: InvokeOptions): Output<GetPiiSmDevicesForKeyResult>
    def get_pii_sm_devices_for_key(bluetooth_mac: Optional[str] = None,
                                   email: Optional[str] = None,
                                   imei: Optional[str] = None,
                                   mac: Optional[str] = None,
                                   network_id: Optional[str] = None,
                                   serial: Optional[str] = None,
                                   username: Optional[str] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetPiiSmDevicesForKeyResult
    def get_pii_sm_devices_for_key_output(bluetooth_mac: Optional[pulumi.Input[str]] = None,
                                   email: Optional[pulumi.Input[str]] = None,
                                   imei: Optional[pulumi.Input[str]] = None,
                                   mac: Optional[pulumi.Input[str]] = None,
                                   network_id: Optional[pulumi.Input[str]] = None,
                                   serial: Optional[pulumi.Input[str]] = None,
                                   username: Optional[pulumi.Input[str]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetPiiSmDevicesForKeyResult]
    func GetPiiSmDevicesForKey(ctx *Context, args *GetPiiSmDevicesForKeyArgs, opts ...InvokeOption) (*GetPiiSmDevicesForKeyResult, error)
    func GetPiiSmDevicesForKeyOutput(ctx *Context, args *GetPiiSmDevicesForKeyOutputArgs, opts ...InvokeOption) GetPiiSmDevicesForKeyResultOutput

    > Note: This function is named GetPiiSmDevicesForKey in the Go SDK.

    public static class GetPiiSmDevicesForKey 
    {
        public static Task<GetPiiSmDevicesForKeyResult> InvokeAsync(GetPiiSmDevicesForKeyArgs args, InvokeOptions? opts = null)
        public static Output<GetPiiSmDevicesForKeyResult> Invoke(GetPiiSmDevicesForKeyInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPiiSmDevicesForKeyResult> getPiiSmDevicesForKey(GetPiiSmDevicesForKeyArgs args, InvokeOptions options)
    public static Output<GetPiiSmDevicesForKeyResult> getPiiSmDevicesForKey(GetPiiSmDevicesForKeyArgs args, InvokeOptions options)
    
    fn::invoke:
      function: meraki:networks/getPiiSmDevicesForKey:getPiiSmDevicesForKey
      arguments:
        # arguments dictionary

    The following arguments are supported:

    NetworkId string
    networkId path parameter. Network ID
    BluetoothMac string
    bluetoothMac query parameter. The MAC of a Bluetooth client
    Email string
    email query parameter. The email of a network user account or a Systems Manager device
    Imei string
    imei query parameter. The IMEI of a Systems Manager device
    Mac string
    mac query parameter. The MAC of a network client device or a Systems Manager device
    Serial string
    serial query parameter. The serial of a Systems Manager device
    Username string
    username query parameter. The username of a Systems Manager user
    NetworkId string
    networkId path parameter. Network ID
    BluetoothMac string
    bluetoothMac query parameter. The MAC of a Bluetooth client
    Email string
    email query parameter. The email of a network user account or a Systems Manager device
    Imei string
    imei query parameter. The IMEI of a Systems Manager device
    Mac string
    mac query parameter. The MAC of a network client device or a Systems Manager device
    Serial string
    serial query parameter. The serial of a Systems Manager device
    Username string
    username query parameter. The username of a Systems Manager user
    networkId String
    networkId path parameter. Network ID
    bluetoothMac String
    bluetoothMac query parameter. The MAC of a Bluetooth client
    email String
    email query parameter. The email of a network user account or a Systems Manager device
    imei String
    imei query parameter. The IMEI of a Systems Manager device
    mac String
    mac query parameter. The MAC of a network client device or a Systems Manager device
    serial String
    serial query parameter. The serial of a Systems Manager device
    username String
    username query parameter. The username of a Systems Manager user
    networkId string
    networkId path parameter. Network ID
    bluetoothMac string
    bluetoothMac query parameter. The MAC of a Bluetooth client
    email string
    email query parameter. The email of a network user account or a Systems Manager device
    imei string
    imei query parameter. The IMEI of a Systems Manager device
    mac string
    mac query parameter. The MAC of a network client device or a Systems Manager device
    serial string
    serial query parameter. The serial of a Systems Manager device
    username string
    username query parameter. The username of a Systems Manager user
    network_id str
    networkId path parameter. Network ID
    bluetooth_mac str
    bluetoothMac query parameter. The MAC of a Bluetooth client
    email str
    email query parameter. The email of a network user account or a Systems Manager device
    imei str
    imei query parameter. The IMEI of a Systems Manager device
    mac str
    mac query parameter. The MAC of a network client device or a Systems Manager device
    serial str
    serial query parameter. The serial of a Systems Manager device
    username str
    username query parameter. The username of a Systems Manager user
    networkId String
    networkId path parameter. Network ID
    bluetoothMac String
    bluetoothMac query parameter. The MAC of a Bluetooth client
    email String
    email query parameter. The email of a network user account or a Systems Manager device
    imei String
    imei query parameter. The IMEI of a Systems Manager device
    mac String
    mac query parameter. The MAC of a network client device or a Systems Manager device
    serial String
    serial query parameter. The serial of a Systems Manager device
    username String
    username query parameter. The username of a Systems Manager user

    getPiiSmDevicesForKey Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Item GetPiiSmDevicesForKeyItem
    NetworkId string
    networkId path parameter. Network ID
    BluetoothMac string
    bluetoothMac query parameter. The MAC of a Bluetooth client
    Email string
    email query parameter. The email of a network user account or a Systems Manager device
    Imei string
    imei query parameter. The IMEI of a Systems Manager device
    Mac string
    mac query parameter. The MAC of a network client device or a Systems Manager device
    Serial string
    serial query parameter. The serial of a Systems Manager device
    Username string
    username query parameter. The username of a Systems Manager user
    Id string
    The provider-assigned unique ID for this managed resource.
    Item GetPiiSmDevicesForKeyItem
    NetworkId string
    networkId path parameter. Network ID
    BluetoothMac string
    bluetoothMac query parameter. The MAC of a Bluetooth client
    Email string
    email query parameter. The email of a network user account or a Systems Manager device
    Imei string
    imei query parameter. The IMEI of a Systems Manager device
    Mac string
    mac query parameter. The MAC of a network client device or a Systems Manager device
    Serial string
    serial query parameter. The serial of a Systems Manager device
    Username string
    username query parameter. The username of a Systems Manager user
    id String
    The provider-assigned unique ID for this managed resource.
    item GetPiiSmDevicesForKeyItem
    networkId String
    networkId path parameter. Network ID
    bluetoothMac String
    bluetoothMac query parameter. The MAC of a Bluetooth client
    email String
    email query parameter. The email of a network user account or a Systems Manager device
    imei String
    imei query parameter. The IMEI of a Systems Manager device
    mac String
    mac query parameter. The MAC of a network client device or a Systems Manager device
    serial String
    serial query parameter. The serial of a Systems Manager device
    username String
    username query parameter. The username of a Systems Manager user
    id string
    The provider-assigned unique ID for this managed resource.
    item GetPiiSmDevicesForKeyItem
    networkId string
    networkId path parameter. Network ID
    bluetoothMac string
    bluetoothMac query parameter. The MAC of a Bluetooth client
    email string
    email query parameter. The email of a network user account or a Systems Manager device
    imei string
    imei query parameter. The IMEI of a Systems Manager device
    mac string
    mac query parameter. The MAC of a network client device or a Systems Manager device
    serial string
    serial query parameter. The serial of a Systems Manager device
    username string
    username query parameter. The username of a Systems Manager user
    id str
    The provider-assigned unique ID for this managed resource.
    item GetPiiSmDevicesForKeyItem
    network_id str
    networkId path parameter. Network ID
    bluetooth_mac str
    bluetoothMac query parameter. The MAC of a Bluetooth client
    email str
    email query parameter. The email of a network user account or a Systems Manager device
    imei str
    imei query parameter. The IMEI of a Systems Manager device
    mac str
    mac query parameter. The MAC of a network client device or a Systems Manager device
    serial str
    serial query parameter. The serial of a Systems Manager device
    username str
    username query parameter. The username of a Systems Manager user
    id String
    The provider-assigned unique ID for this managed resource.
    item Property Map
    networkId String
    networkId path parameter. Network ID
    bluetoothMac String
    bluetoothMac query parameter. The MAC of a Bluetooth client
    email String
    email query parameter. The email of a network user account or a Systems Manager device
    imei String
    imei query parameter. The IMEI of a Systems Manager device
    mac String
    mac query parameter. The MAC of a network client device or a Systems Manager device
    serial String
    serial query parameter. The serial of a Systems Manager device
    username String
    username query parameter. The username of a Systems Manager user

    Supporting Types

    GetPiiSmDevicesForKeyItem

    N1234s List<string>
    N1234s []string
    n1234s List<String>
    n1234s string[]
    n1234s Sequence[str]
    n1234s List<String>

    Package Details

    Repository
    meraki pulumi/pulumi-meraki
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the meraki Terraform Provider.
    meraki logo
    Cisco Meraki v0.4.4 published on Wednesday, Oct 22, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate