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

meraki.organizations.getWirelessDevicesEthernetStatuses

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.getWirelessDevicesEthernetStatuses({
        endingBefore: "string",
        networkIds: ["string"],
        organizationId: "string",
        perPage: 1,
        startingAfter: "string",
    });
    export const merakiOrganizationsWirelessDevicesEthernetStatusesExample = example.then(example => example.items);
    
    import pulumi
    import pulumi_meraki as meraki
    
    example = meraki.organizations.get_wireless_devices_ethernet_statuses(ending_before="string",
        network_ids=["string"],
        organization_id="string",
        per_page=1,
        starting_after="string")
    pulumi.export("merakiOrganizationsWirelessDevicesEthernetStatusesExample", 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.GetWirelessDevicesEthernetStatuses(ctx, &organizations.GetWirelessDevicesEthernetStatusesArgs{
    			EndingBefore: pulumi.StringRef("string"),
    			NetworkIds: []string{
    				"string",
    			},
    			OrganizationId: "string",
    			PerPage:        pulumi.IntRef(1),
    			StartingAfter:  pulumi.StringRef("string"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("merakiOrganizationsWirelessDevicesEthernetStatusesExample", 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.GetWirelessDevicesEthernetStatuses.Invoke(new()
        {
            EndingBefore = "string",
            NetworkIds = new[]
            {
                "string",
            },
            OrganizationId = "string",
            PerPage = 1,
            StartingAfter = "string",
        });
    
        return new Dictionary<string, object?>
        {
            ["merakiOrganizationsWirelessDevicesEthernetStatusesExample"] = example.Apply(getWirelessDevicesEthernetStatusesResult => getWirelessDevicesEthernetStatusesResult.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.GetWirelessDevicesEthernetStatusesArgs;
    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.getWirelessDevicesEthernetStatuses(GetWirelessDevicesEthernetStatusesArgs.builder()
                .endingBefore("string")
                .networkIds("string")
                .organizationId("string")
                .perPage(1)
                .startingAfter("string")
                .build());
    
            ctx.export("merakiOrganizationsWirelessDevicesEthernetStatusesExample", example.applyValue(getWirelessDevicesEthernetStatusesResult -> getWirelessDevicesEthernetStatusesResult.items()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: meraki:organizations:getWirelessDevicesEthernetStatuses
          Arguments:
            endingBefore: string
            networkIds:
              - string
            organizationId: string
            perPage: 1
            startingAfter: string
    outputs:
      merakiOrganizationsWirelessDevicesEthernetStatusesExample: ${example.items}
    

    Using getWirelessDevicesEthernetStatuses

    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 getWirelessDevicesEthernetStatuses(args: GetWirelessDevicesEthernetStatusesArgs, opts?: InvokeOptions): Promise<GetWirelessDevicesEthernetStatusesResult>
    function getWirelessDevicesEthernetStatusesOutput(args: GetWirelessDevicesEthernetStatusesOutputArgs, opts?: InvokeOptions): Output<GetWirelessDevicesEthernetStatusesResult>
    def get_wireless_devices_ethernet_statuses(ending_before: Optional[str] = None,
                                               network_ids: Optional[Sequence[str]] = None,
                                               organization_id: Optional[str] = None,
                                               per_page: Optional[int] = None,
                                               starting_after: Optional[str] = None,
                                               opts: Optional[InvokeOptions] = None) -> GetWirelessDevicesEthernetStatusesResult
    def get_wireless_devices_ethernet_statuses_output(ending_before: Optional[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,
                                               starting_after: Optional[pulumi.Input[str]] = None,
                                               opts: Optional[InvokeOptions] = None) -> Output[GetWirelessDevicesEthernetStatusesResult]
    func GetWirelessDevicesEthernetStatuses(ctx *Context, args *GetWirelessDevicesEthernetStatusesArgs, opts ...InvokeOption) (*GetWirelessDevicesEthernetStatusesResult, error)
    func GetWirelessDevicesEthernetStatusesOutput(ctx *Context, args *GetWirelessDevicesEthernetStatusesOutputArgs, opts ...InvokeOption) GetWirelessDevicesEthernetStatusesResultOutput

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

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

    The following arguments are supported:

    OrganizationId string
    organizationId path parameter. Organization ID
    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.
    NetworkIds List<string>
    networkIds query parameter. A list of Meraki network IDs to filter results to contain only specified networks. E.g.: networkIds[]=N12345678&networkIds[]=L3456
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
    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.
    OrganizationId string
    organizationId path parameter. Organization ID
    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.
    NetworkIds []string
    networkIds query parameter. A list of Meraki network IDs to filter results to contain only specified networks. E.g.: networkIds[]=N12345678&networkIds[]=L3456
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
    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.
    organizationId String
    organizationId path parameter. Organization ID
    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.
    networkIds List<String>
    networkIds query parameter. A list of Meraki network IDs to filter results to contain only specified networks. E.g.: networkIds[]=N12345678&networkIds[]=L3456
    perPage Integer
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
    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.
    organizationId string
    organizationId path parameter. Organization ID
    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.
    networkIds string[]
    networkIds query parameter. A list of Meraki network IDs to filter results to contain only specified networks. E.g.: networkIds[]=N12345678&networkIds[]=L3456
    perPage number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
    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.
    organization_id str
    organizationId path parameter. Organization ID
    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.
    network_ids Sequence[str]
    networkIds query parameter. A list of Meraki network IDs to filter results to contain only specified networks. E.g.: networkIds[]=N12345678&networkIds[]=L3456
    per_page int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
    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.
    organizationId String
    organizationId path parameter. Organization ID
    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.
    networkIds List<String>
    networkIds query parameter. A list of Meraki network IDs to filter results to contain only specified networks. E.g.: networkIds[]=N12345678&networkIds[]=L3456
    perPage Number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
    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.

    getWirelessDevicesEthernetStatuses Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<GetWirelessDevicesEthernetStatusesItem>
    Array of ResponseWirelessGetOrganizationWirelessDevicesEthernetStatuses
    OrganizationId string
    organizationId path parameter. Organization ID
    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.
    NetworkIds List<string>
    networkIds query parameter. A list of Meraki network IDs to filter results to contain only specified networks. E.g.: networkIds[]=N12345678&networkIds[]=L3456
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
    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.
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []GetWirelessDevicesEthernetStatusesItem
    Array of ResponseWirelessGetOrganizationWirelessDevicesEthernetStatuses
    OrganizationId string
    organizationId path parameter. Organization ID
    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.
    NetworkIds []string
    networkIds query parameter. A list of Meraki network IDs to filter results to contain only specified networks. E.g.: networkIds[]=N12345678&networkIds[]=L3456
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<GetWirelessDevicesEthernetStatusesItem>
    Array of ResponseWirelessGetOrganizationWirelessDevicesEthernetStatuses
    organizationId String
    organizationId path parameter. Organization ID
    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.
    networkIds List<String>
    networkIds query parameter. A list of Meraki network IDs to filter results to contain only specified networks. E.g.: networkIds[]=N12345678&networkIds[]=L3456
    perPage Integer
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
    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.
    id string
    The provider-assigned unique ID for this managed resource.
    items GetWirelessDevicesEthernetStatusesItem[]
    Array of ResponseWirelessGetOrganizationWirelessDevicesEthernetStatuses
    organizationId string
    organizationId path parameter. Organization ID
    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.
    networkIds string[]
    networkIds query parameter. A list of Meraki network IDs to filter results to contain only specified networks. E.g.: networkIds[]=N12345678&networkIds[]=L3456
    perPage number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
    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.
    id str
    The provider-assigned unique ID for this managed resource.
    items Sequence[GetWirelessDevicesEthernetStatusesItem]
    Array of ResponseWirelessGetOrganizationWirelessDevicesEthernetStatuses
    organization_id str
    organizationId path parameter. Organization ID
    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.
    network_ids Sequence[str]
    networkIds query parameter. A list of Meraki network IDs to filter results to contain only specified networks. E.g.: networkIds[]=N12345678&networkIds[]=L3456
    per_page int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>
    Array of ResponseWirelessGetOrganizationWirelessDevicesEthernetStatuses
    organizationId String
    organizationId path parameter. Organization ID
    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.
    networkIds List<String>
    networkIds query parameter. A list of Meraki network IDs to filter results to contain only specified networks. E.g.: networkIds[]=N12345678&networkIds[]=L3456
    perPage Number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
    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.

    Supporting Types

    GetWirelessDevicesEthernetStatusesItem

    Aggregation GetWirelessDevicesEthernetStatusesItemAggregation
    Aggregation details object
    Name string
    The name of the AP
    Network GetWirelessDevicesEthernetStatusesItemNetwork
    Network details object
    Ports List<GetWirelessDevicesEthernetStatusesItemPort>
    List of port details
    Power GetWirelessDevicesEthernetStatusesItemPower
    Power details object
    Serial string
    The serial number of the AP
    Aggregation GetWirelessDevicesEthernetStatusesItemAggregation
    Aggregation details object
    Name string
    The name of the AP
    Network GetWirelessDevicesEthernetStatusesItemNetwork
    Network details object
    Ports []GetWirelessDevicesEthernetStatusesItemPort
    List of port details
    Power GetWirelessDevicesEthernetStatusesItemPower
    Power details object
    Serial string
    The serial number of the AP
    aggregation GetWirelessDevicesEthernetStatusesItemAggregation
    Aggregation details object
    name String
    The name of the AP
    network GetWirelessDevicesEthernetStatusesItemNetwork
    Network details object
    ports List<GetWirelessDevicesEthernetStatusesItemPort>
    List of port details
    power GetWirelessDevicesEthernetStatusesItemPower
    Power details object
    serial String
    The serial number of the AP
    aggregation GetWirelessDevicesEthernetStatusesItemAggregation
    Aggregation details object
    name string
    The name of the AP
    network GetWirelessDevicesEthernetStatusesItemNetwork
    Network details object
    ports GetWirelessDevicesEthernetStatusesItemPort[]
    List of port details
    power GetWirelessDevicesEthernetStatusesItemPower
    Power details object
    serial string
    The serial number of the AP
    aggregation Property Map
    Aggregation details object
    name String
    The name of the AP
    network Property Map
    Network details object
    ports List<Property Map>
    List of port details
    power Property Map
    Power details object
    serial String
    The serial number of the AP

    GetWirelessDevicesEthernetStatusesItemAggregation

    Enabled bool
    Link Aggregation enabled flag
    Speed int
    Link Aggregation speed
    Enabled bool
    Link Aggregation enabled flag
    Speed int
    Link Aggregation speed
    enabled Boolean
    Link Aggregation enabled flag
    speed Integer
    Link Aggregation speed
    enabled boolean
    Link Aggregation enabled flag
    speed number
    Link Aggregation speed
    enabled bool
    Link Aggregation enabled flag
    speed int
    Link Aggregation speed
    enabled Boolean
    Link Aggregation enabled flag
    speed Number
    Link Aggregation speed

    GetWirelessDevicesEthernetStatusesItemNetwork

    Id string
    The network ID the AP is associated to
    Id string
    The network ID the AP is associated to
    id String
    The network ID the AP is associated to
    id string
    The network ID the AP is associated to
    id str
    The network ID the AP is associated to
    id String
    The network ID the AP is associated to

    GetWirelessDevicesEthernetStatusesItemPort

    LinkNegotiation GetWirelessDevicesEthernetStatusesItemPortLinkNegotiation
    Link negotiation details object for the port
    Name string
    Label of the port
    Poe GetWirelessDevicesEthernetStatusesItemPortPoe
    PoE details object for the port
    LinkNegotiation GetWirelessDevicesEthernetStatusesItemPortLinkNegotiation
    Link negotiation details object for the port
    Name string
    Label of the port
    Poe GetWirelessDevicesEthernetStatusesItemPortPoe
    PoE details object for the port
    linkNegotiation GetWirelessDevicesEthernetStatusesItemPortLinkNegotiation
    Link negotiation details object for the port
    name String
    Label of the port
    poe GetWirelessDevicesEthernetStatusesItemPortPoe
    PoE details object for the port
    linkNegotiation GetWirelessDevicesEthernetStatusesItemPortLinkNegotiation
    Link negotiation details object for the port
    name string
    Label of the port
    poe GetWirelessDevicesEthernetStatusesItemPortPoe
    PoE details object for the port
    link_negotiation GetWirelessDevicesEthernetStatusesItemPortLinkNegotiation
    Link negotiation details object for the port
    name str
    Label of the port
    poe GetWirelessDevicesEthernetStatusesItemPortPoe
    PoE details object for the port
    linkNegotiation Property Map
    Link negotiation details object for the port
    name String
    Label of the port
    poe Property Map
    PoE details object for the port

    GetWirelessDevicesEthernetStatusesItemPortLinkNegotiation

    Duplex string
    The duplex mode of the port. Can be 'full' or 'half'
    Speed int
    The speed of the port
    Duplex string
    The duplex mode of the port. Can be 'full' or 'half'
    Speed int
    The speed of the port
    duplex String
    The duplex mode of the port. Can be 'full' or 'half'
    speed Integer
    The speed of the port
    duplex string
    The duplex mode of the port. Can be 'full' or 'half'
    speed number
    The speed of the port
    duplex str
    The duplex mode of the port. Can be 'full' or 'half'
    speed int
    The speed of the port
    duplex String
    The duplex mode of the port. Can be 'full' or 'half'
    speed Number
    The speed of the port

    GetWirelessDevicesEthernetStatusesItemPortPoe

    Standard string
    The PoE Standard for the port. Can be '802.3at', '802.3af', '802.3bt', or null
    Standard string
    The PoE Standard for the port. Can be '802.3at', '802.3af', '802.3bt', or null
    standard String
    The PoE Standard for the port. Can be '802.3at', '802.3af', '802.3bt', or null
    standard string
    The PoE Standard for the port. Can be '802.3at', '802.3af', '802.3bt', or null
    standard str
    The PoE Standard for the port. Can be '802.3at', '802.3af', '802.3bt', or null
    standard String
    The PoE Standard for the port. Can be '802.3at', '802.3af', '802.3bt', or null

    GetWirelessDevicesEthernetStatusesItemPower

    Ac GetWirelessDevicesEthernetStatusesItemPowerAc
    AC power details object
    Mode string
    The PoE power mode for the AP. Can be 'full' or 'low'
    Poe GetWirelessDevicesEthernetStatusesItemPowerPoe
    PoE power details object
    Ac GetWirelessDevicesEthernetStatusesItemPowerAc
    AC power details object
    Mode string
    The PoE power mode for the AP. Can be 'full' or 'low'
    Poe GetWirelessDevicesEthernetStatusesItemPowerPoe
    PoE power details object
    ac GetWirelessDevicesEthernetStatusesItemPowerAc
    AC power details object
    mode String
    The PoE power mode for the AP. Can be 'full' or 'low'
    poe GetWirelessDevicesEthernetStatusesItemPowerPoe
    PoE power details object
    ac GetWirelessDevicesEthernetStatusesItemPowerAc
    AC power details object
    mode string
    The PoE power mode for the AP. Can be 'full' or 'low'
    poe GetWirelessDevicesEthernetStatusesItemPowerPoe
    PoE power details object
    ac GetWirelessDevicesEthernetStatusesItemPowerAc
    AC power details object
    mode str
    The PoE power mode for the AP. Can be 'full' or 'low'
    poe GetWirelessDevicesEthernetStatusesItemPowerPoe
    PoE power details object
    ac Property Map
    AC power details object
    mode String
    The PoE power mode for the AP. Can be 'full' or 'low'
    poe Property Map
    PoE power details object

    GetWirelessDevicesEthernetStatusesItemPowerAc

    IsConnected bool
    AC power connected
    IsConnected bool
    AC power connected
    isConnected Boolean
    AC power connected
    isConnected boolean
    AC power connected
    is_connected bool
    AC power connected
    isConnected Boolean
    AC power connected

    GetWirelessDevicesEthernetStatusesItemPowerPoe

    IsConnected bool
    PoE power connected
    IsConnected bool
    PoE power connected
    isConnected Boolean
    PoE power connected
    isConnected boolean
    PoE power connected
    is_connected bool
    PoE power connected
    isConnected Boolean
    PoE power connected

    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