1. Packages
  2. Cisco Meraki
  3. API Docs
  4. organizations
  5. getWirelessDevicesPacketLossByClient
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

meraki.organizations.getWirelessDevicesPacketLossByClient

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as meraki from "@pulumi/meraki";
    
    const example = meraki.organizations.getWirelessDevicesPacketLossByClient({
        bands: ["string"],
        endingBefore: "string",
        macs: ["string"],
        networkIds: ["string"],
        organizationId: "string",
        perPage: 1,
        ssids: ["string"],
        startingAfter: "string",
        t0: "string",
        t1: "string",
        timespan: 1,
    });
    export const merakiOrganizationsWirelessDevicesPacketLossByClientExample = example.then(example => example.items);
    
    import pulumi
    import pulumi_meraki as meraki
    
    example = meraki.organizations.get_wireless_devices_packet_loss_by_client(bands=["string"],
        ending_before="string",
        macs=["string"],
        network_ids=["string"],
        organization_id="string",
        per_page=1,
        ssids=["string"],
        starting_after="string",
        t0="string",
        t1="string",
        timespan=1)
    pulumi.export("merakiOrganizationsWirelessDevicesPacketLossByClientExample", example.items)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/organizations"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := organizations.GetWirelessDevicesPacketLossByClient(ctx, &organizations.GetWirelessDevicesPacketLossByClientArgs{
    			Bands: []string{
    				"string",
    			},
    			EndingBefore: pulumi.StringRef("string"),
    			Macs: []string{
    				"string",
    			},
    			NetworkIds: []string{
    				"string",
    			},
    			OrganizationId: "string",
    			PerPage:        pulumi.IntRef(1),
    			Ssids: []string{
    				"string",
    			},
    			StartingAfter: pulumi.StringRef("string"),
    			T0:            pulumi.StringRef("string"),
    			T1:            pulumi.StringRef("string"),
    			Timespan:      pulumi.Float64Ref(1),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("merakiOrganizationsWirelessDevicesPacketLossByClientExample", example.Items)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Meraki = Pulumi.Meraki;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Meraki.Organizations.GetWirelessDevicesPacketLossByClient.Invoke(new()
        {
            Bands = new[]
            {
                "string",
            },
            EndingBefore = "string",
            Macs = new[]
            {
                "string",
            },
            NetworkIds = new[]
            {
                "string",
            },
            OrganizationId = "string",
            PerPage = 1,
            Ssids = new[]
            {
                "string",
            },
            StartingAfter = "string",
            T0 = "string",
            T1 = "string",
            Timespan = 1,
        });
    
        return new Dictionary<string, object?>
        {
            ["merakiOrganizationsWirelessDevicesPacketLossByClientExample"] = example.Apply(getWirelessDevicesPacketLossByClientResult => getWirelessDevicesPacketLossByClientResult.Items),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.meraki.organizations.OrganizationsFunctions;
    import com.pulumi.meraki.organizations.inputs.GetWirelessDevicesPacketLossByClientArgs;
    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 = OrganizationsFunctions.getWirelessDevicesPacketLossByClient(GetWirelessDevicesPacketLossByClientArgs.builder()
                .bands("string")
                .endingBefore("string")
                .macs("string")
                .networkIds("string")
                .organizationId("string")
                .perPage(1)
                .ssids("string")
                .startingAfter("string")
                .t0("string")
                .t1("string")
                .timespan(1)
                .build());
    
            ctx.export("merakiOrganizationsWirelessDevicesPacketLossByClientExample", example.applyValue(getWirelessDevicesPacketLossByClientResult -> getWirelessDevicesPacketLossByClientResult.items()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: meraki:organizations:getWirelessDevicesPacketLossByClient
          Arguments:
            bands:
              - string
            endingBefore: string
            macs:
              - string
            networkIds:
              - string
            organizationId: string
            perPage: 1
            ssids:
              - string
            startingAfter: string
            t0: string
            t1: string
            timespan: 1
    outputs:
      merakiOrganizationsWirelessDevicesPacketLossByClientExample: ${example.items}
    

    Using getWirelessDevicesPacketLossByClient

    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 getWirelessDevicesPacketLossByClient(args: GetWirelessDevicesPacketLossByClientArgs, opts?: InvokeOptions): Promise<GetWirelessDevicesPacketLossByClientResult>
    function getWirelessDevicesPacketLossByClientOutput(args: GetWirelessDevicesPacketLossByClientOutputArgs, opts?: InvokeOptions): Output<GetWirelessDevicesPacketLossByClientResult>
    def get_wireless_devices_packet_loss_by_client(bands: Optional[Sequence[str]] = None,
                                                   ending_before: Optional[str] = None,
                                                   macs: Optional[Sequence[str]] = None,
                                                   network_ids: Optional[Sequence[str]] = None,
                                                   organization_id: Optional[str] = None,
                                                   per_page: Optional[int] = None,
                                                   ssids: Optional[Sequence[str]] = None,
                                                   starting_after: Optional[str] = None,
                                                   t0: Optional[str] = None,
                                                   t1: Optional[str] = None,
                                                   timespan: Optional[float] = None,
                                                   opts: Optional[InvokeOptions] = None) -> GetWirelessDevicesPacketLossByClientResult
    def get_wireless_devices_packet_loss_by_client_output(bands: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                   ending_before: Optional[pulumi.Input[str]] = None,
                                                   macs: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                   network_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                   organization_id: Optional[pulumi.Input[str]] = None,
                                                   per_page: Optional[pulumi.Input[int]] = None,
                                                   ssids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                   starting_after: Optional[pulumi.Input[str]] = None,
                                                   t0: Optional[pulumi.Input[str]] = None,
                                                   t1: Optional[pulumi.Input[str]] = None,
                                                   timespan: Optional[pulumi.Input[float]] = None,
                                                   opts: Optional[InvokeOptions] = None) -> Output[GetWirelessDevicesPacketLossByClientResult]
    func GetWirelessDevicesPacketLossByClient(ctx *Context, args *GetWirelessDevicesPacketLossByClientArgs, opts ...InvokeOption) (*GetWirelessDevicesPacketLossByClientResult, error)
    func GetWirelessDevicesPacketLossByClientOutput(ctx *Context, args *GetWirelessDevicesPacketLossByClientOutputArgs, opts ...InvokeOption) GetWirelessDevicesPacketLossByClientResultOutput

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

    public static class GetWirelessDevicesPacketLossByClient 
    {
        public static Task<GetWirelessDevicesPacketLossByClientResult> InvokeAsync(GetWirelessDevicesPacketLossByClientArgs args, InvokeOptions? opts = null)
        public static Output<GetWirelessDevicesPacketLossByClientResult> Invoke(GetWirelessDevicesPacketLossByClientInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetWirelessDevicesPacketLossByClientResult> getWirelessDevicesPacketLossByClient(GetWirelessDevicesPacketLossByClientArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: meraki:organizations/getWirelessDevicesPacketLossByClient:getWirelessDevicesPacketLossByClient
      arguments:
        # arguments dictionary

    The following arguments are supported:

    OrganizationId string
    organizationId path parameter. Organization ID
    Bands List<string>
    bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
    EndingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    Macs List<string>
    macs query parameter. Filter results by client mac address(es).
    NetworkIds List<string>
    networkIds query parameter. Filter results by network.
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
    Ssids List<string>
    ssids query parameter. Filter results by SSID number.
    StartingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    T0 string
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
    T1 string
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 days after t0.
    Timespan double
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.
    OrganizationId string
    organizationId path parameter. Organization ID
    Bands []string
    bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
    EndingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    Macs []string
    macs query parameter. Filter results by client mac address(es).
    NetworkIds []string
    networkIds query parameter. Filter results by network.
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
    Ssids []string
    ssids query parameter. Filter results by SSID number.
    StartingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    T0 string
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
    T1 string
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 days after t0.
    Timespan float64
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.
    organizationId String
    organizationId path parameter. Organization ID
    bands List<String>
    bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
    endingBefore String
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    macs List<String>
    macs query parameter. Filter results by client mac address(es).
    networkIds List<String>
    networkIds query parameter. Filter results by network.
    perPage Integer
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
    ssids List<String>
    ssids query parameter. Filter results by SSID number.
    startingAfter String
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    t0 String
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
    t1 String
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 days after t0.
    timespan Double
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.
    organizationId string
    organizationId path parameter. Organization ID
    bands string[]
    bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
    endingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    macs string[]
    macs query parameter. Filter results by client mac address(es).
    networkIds string[]
    networkIds query parameter. Filter results by network.
    perPage number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
    ssids string[]
    ssids query parameter. Filter results by SSID number.
    startingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    t0 string
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
    t1 string
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 days after t0.
    timespan number
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.
    organization_id str
    organizationId path parameter. Organization ID
    bands Sequence[str]
    bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
    ending_before str
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    macs Sequence[str]
    macs query parameter. Filter results by client mac address(es).
    network_ids Sequence[str]
    networkIds query parameter. Filter results by network.
    per_page int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
    ssids Sequence[str]
    ssids query parameter. Filter results by SSID number.
    starting_after str
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    t0 str
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
    t1 str
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 days after t0.
    timespan float
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.
    organizationId String
    organizationId path parameter. Organization ID
    bands List<String>
    bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
    endingBefore String
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    macs List<String>
    macs query parameter. Filter results by client mac address(es).
    networkIds List<String>
    networkIds query parameter. Filter results by network.
    perPage Number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
    ssids List<String>
    ssids query parameter. Filter results by SSID number.
    startingAfter String
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    t0 String
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
    t1 String
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 days after t0.
    timespan Number
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.

    getWirelessDevicesPacketLossByClient Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<GetWirelessDevicesPacketLossByClientItem>
    Array of ResponseWirelessGetOrganizationWirelessDevicesPacketLossByClient
    OrganizationId string
    organizationId path parameter. Organization ID
    Bands List<string>
    bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
    EndingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    Macs List<string>
    macs query parameter. Filter results by client mac address(es).
    NetworkIds List<string>
    networkIds query parameter. Filter results by network.
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
    Ssids List<string>
    ssids query parameter. Filter results by SSID number.
    StartingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    T0 string
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
    T1 string
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 days after t0.
    Timespan double
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []GetWirelessDevicesPacketLossByClientItem
    Array of ResponseWirelessGetOrganizationWirelessDevicesPacketLossByClient
    OrganizationId string
    organizationId path parameter. Organization ID
    Bands []string
    bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
    EndingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    Macs []string
    macs query parameter. Filter results by client mac address(es).
    NetworkIds []string
    networkIds query parameter. Filter results by network.
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
    Ssids []string
    ssids query parameter. Filter results by SSID number.
    StartingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    T0 string
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
    T1 string
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 days after t0.
    Timespan float64
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<GetWirelessDevicesPacketLossByClientItem>
    Array of ResponseWirelessGetOrganizationWirelessDevicesPacketLossByClient
    organizationId String
    organizationId path parameter. Organization ID
    bands List<String>
    bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
    endingBefore String
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    macs List<String>
    macs query parameter. Filter results by client mac address(es).
    networkIds List<String>
    networkIds query parameter. Filter results by network.
    perPage Integer
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
    ssids List<String>
    ssids query parameter. Filter results by SSID number.
    startingAfter String
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    t0 String
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
    t1 String
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 days after t0.
    timespan Double
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.
    id string
    The provider-assigned unique ID for this managed resource.
    items GetWirelessDevicesPacketLossByClientItem[]
    Array of ResponseWirelessGetOrganizationWirelessDevicesPacketLossByClient
    organizationId string
    organizationId path parameter. Organization ID
    bands string[]
    bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
    endingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    macs string[]
    macs query parameter. Filter results by client mac address(es).
    networkIds string[]
    networkIds query parameter. Filter results by network.
    perPage number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
    ssids string[]
    ssids query parameter. Filter results by SSID number.
    startingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    t0 string
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
    t1 string
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 days after t0.
    timespan number
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.
    id str
    The provider-assigned unique ID for this managed resource.
    items Sequence[GetWirelessDevicesPacketLossByClientItem]
    Array of ResponseWirelessGetOrganizationWirelessDevicesPacketLossByClient
    organization_id str
    organizationId path parameter. Organization ID
    bands Sequence[str]
    bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
    ending_before str
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    macs Sequence[str]
    macs query parameter. Filter results by client mac address(es).
    network_ids Sequence[str]
    networkIds query parameter. Filter results by network.
    per_page int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
    ssids Sequence[str]
    ssids query parameter. Filter results by SSID number.
    starting_after str
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    t0 str
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
    t1 str
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 days after t0.
    timespan float
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>
    Array of ResponseWirelessGetOrganizationWirelessDevicesPacketLossByClient
    organizationId String
    organizationId path parameter. Organization ID
    bands List<String>
    bands query parameter. Filter results by band. Valid bands are: 2.4, 5, and 6.
    endingBefore String
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    macs List<String>
    macs query parameter. Filter results by client mac address(es).
    networkIds List<String>
    networkIds query parameter. Filter results by network.
    perPage Number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
    ssids List<String>
    ssids query parameter. Filter results by SSID number.
    startingAfter String
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    t0 String
    t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 90 days from today.
    t1 String
    t1 query parameter. The end of the timespan for the data. t1 can be a maximum of 90 days after t0.
    timespan Number
    timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameters t0 and t1. The value must be in seconds and be greater than or equal to 5 minutes and be less than or equal to 90 days. The default is 7 days.

    Supporting Types

    GetWirelessDevicesPacketLossByClientItem

    client Property Map
    Client.
    downstream Property Map
    Packets sent from an AP to a client.
    network Property Map
    Network.
    upstream Property Map
    Packets sent from a client to an AP.

    GetWirelessDevicesPacketLossByClientItemClient

    Id string
    Client ID.
    Mac string
    MAC address.
    Id string
    Client ID.
    Mac string
    MAC address.
    id String
    Client ID.
    mac String
    MAC address.
    id string
    Client ID.
    mac string
    MAC address.
    id str
    Client ID.
    mac str
    MAC address.
    id String
    Client ID.
    mac String
    MAC address.

    GetWirelessDevicesPacketLossByClientItemDownstream

    LossPercentage double
    Percentage of lost packets.
    Lost int
    Total packets sent by an AP that did not reach the client.
    Total int
    Total packets received by a client.
    LossPercentage float64
    Percentage of lost packets.
    Lost int
    Total packets sent by an AP that did not reach the client.
    Total int
    Total packets received by a client.
    lossPercentage Double
    Percentage of lost packets.
    lost Integer
    Total packets sent by an AP that did not reach the client.
    total Integer
    Total packets received by a client.
    lossPercentage number
    Percentage of lost packets.
    lost number
    Total packets sent by an AP that did not reach the client.
    total number
    Total packets received by a client.
    loss_percentage float
    Percentage of lost packets.
    lost int
    Total packets sent by an AP that did not reach the client.
    total int
    Total packets received by a client.
    lossPercentage Number
    Percentage of lost packets.
    lost Number
    Total packets sent by an AP that did not reach the client.
    total Number
    Total packets received by a client.

    GetWirelessDevicesPacketLossByClientItemNetwork

    Id string
    Network ID.
    Name string
    Name of the network.
    Id string
    Network ID.
    Name string
    Name of the network.
    id String
    Network ID.
    name String
    Name of the network.
    id string
    Network ID.
    name string
    Name of the network.
    id str
    Network ID.
    name str
    Name of the network.
    id String
    Network ID.
    name String
    Name of the network.

    GetWirelessDevicesPacketLossByClientItemUpstream

    LossPercentage double
    Percentage of lost packets.
    Lost int
    Total packets sent by a client and did not reach the AP.
    Total int
    Total packets sent by a client to an AP.
    LossPercentage float64
    Percentage of lost packets.
    Lost int
    Total packets sent by a client and did not reach the AP.
    Total int
    Total packets sent by a client to an AP.
    lossPercentage Double
    Percentage of lost packets.
    lost Integer
    Total packets sent by a client and did not reach the AP.
    total Integer
    Total packets sent by a client to an AP.
    lossPercentage number
    Percentage of lost packets.
    lost number
    Total packets sent by a client and did not reach the AP.
    total number
    Total packets sent by a client to an AP.
    loss_percentage float
    Percentage of lost packets.
    lost int
    Total packets sent by a client and did not reach the AP.
    total int
    Total packets sent by a client to an AP.
    lossPercentage Number
    Percentage of lost packets.
    lost Number
    Total packets sent by a client and did not reach the AP.
    total Number
    Total packets sent by a client to an AP.

    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.2.4 published on Friday, Jun 14, 2024 by Pulumi