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

meraki.organizations.getWirelessDevicesEthernetStatuses

Explore with Pulumi AI

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);
Copy
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)
Copy
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
	})
}
Copy
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),
    };
});
Copy
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()));
    }
}
Copy
variables:
  example:
    fn::invoke:
      function: meraki:organizations:getWirelessDevicesEthernetStatuses
      arguments:
        endingBefore: string
        networkIds:
          - string
        organizationId: string
        perPage: 1
        startingAfter: string
outputs:
  merakiOrganizationsWirelessDevicesEthernetStatusesExample: ${example.items}
Copy

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>
Copy
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]
Copy
func GetWirelessDevicesEthernetStatuses(ctx *Context, args *GetWirelessDevicesEthernetStatusesArgs, opts ...InvokeOption) (*GetWirelessDevicesEthernetStatusesResult, error)
func GetWirelessDevicesEthernetStatusesOutput(ctx *Context, args *GetWirelessDevicesEthernetStatusesOutputArgs, opts ...InvokeOption) GetWirelessDevicesEthernetStatusesResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetWirelessDevicesEthernetStatusesResult> getWirelessDevicesEthernetStatuses(GetWirelessDevicesEthernetStatusesArgs args, InvokeOptions options)
public static Output<GetWirelessDevicesEthernetStatusesResult> getWirelessDevicesEthernetStatuses(GetWirelessDevicesEthernetStatusesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: meraki:organizations/getWirelessDevicesEthernetStatuses:getWirelessDevicesEthernetStatuses
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

OrganizationId This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. GetWirelessDevicesEthernetStatusesItemAggregation
Aggregation details object
Name This property is required. string
The name of the AP
Network This property is required. GetWirelessDevicesEthernetStatusesItemNetwork
Network details object
Ports This property is required. List<GetWirelessDevicesEthernetStatusesItemPort>
List of port details
Power This property is required. GetWirelessDevicesEthernetStatusesItemPower
Power details object
Serial This property is required. string
The serial number of the AP
Aggregation This property is required. GetWirelessDevicesEthernetStatusesItemAggregation
Aggregation details object
Name This property is required. string
The name of the AP
Network This property is required. GetWirelessDevicesEthernetStatusesItemNetwork
Network details object
Ports This property is required. []GetWirelessDevicesEthernetStatusesItemPort
List of port details
Power This property is required. GetWirelessDevicesEthernetStatusesItemPower
Power details object
Serial This property is required. string
The serial number of the AP
aggregation This property is required. GetWirelessDevicesEthernetStatusesItemAggregation
Aggregation details object
name This property is required. String
The name of the AP
network This property is required. GetWirelessDevicesEthernetStatusesItemNetwork
Network details object
ports This property is required. List<GetWirelessDevicesEthernetStatusesItemPort>
List of port details
power This property is required. GetWirelessDevicesEthernetStatusesItemPower
Power details object
serial This property is required. String
The serial number of the AP
aggregation This property is required. GetWirelessDevicesEthernetStatusesItemAggregation
Aggregation details object
name This property is required. string
The name of the AP
network This property is required. GetWirelessDevicesEthernetStatusesItemNetwork
Network details object
ports This property is required. GetWirelessDevicesEthernetStatusesItemPort[]
List of port details
power This property is required. GetWirelessDevicesEthernetStatusesItemPower
Power details object
serial This property is required. string
The serial number of the AP
aggregation This property is required. GetWirelessDevicesEthernetStatusesItemAggregation
Aggregation details object
name This property is required. str
The name of the AP
network This property is required. GetWirelessDevicesEthernetStatusesItemNetwork
Network details object
ports This property is required. Sequence[GetWirelessDevicesEthernetStatusesItemPort]
List of port details
power This property is required. GetWirelessDevicesEthernetStatusesItemPower
Power details object
serial This property is required. str
The serial number of the AP
aggregation This property is required. Property Map
Aggregation details object
name This property is required. String
The name of the AP
network This property is required. Property Map
Network details object
ports This property is required. List<Property Map>
List of port details
power This property is required. Property Map
Power details object
serial This property is required. String
The serial number of the AP

GetWirelessDevicesEthernetStatusesItemAggregation

Enabled This property is required. bool
Link Aggregation enabled flag
Speed This property is required. int
Link Aggregation speed
Enabled This property is required. bool
Link Aggregation enabled flag
Speed This property is required. int
Link Aggregation speed
enabled This property is required. Boolean
Link Aggregation enabled flag
speed This property is required. Integer
Link Aggregation speed
enabled This property is required. boolean
Link Aggregation enabled flag
speed This property is required. number
Link Aggregation speed
enabled This property is required. bool
Link Aggregation enabled flag
speed This property is required. int
Link Aggregation speed
enabled This property is required. Boolean
Link Aggregation enabled flag
speed This property is required. Number
Link Aggregation speed

GetWirelessDevicesEthernetStatusesItemNetwork

Id This property is required. string
The network ID the AP is associated to
Id This property is required. string
The network ID the AP is associated to
id This property is required. String
The network ID the AP is associated to
id This property is required. string
The network ID the AP is associated to
id This property is required. str
The network ID the AP is associated to
id This property is required. String
The network ID the AP is associated to

GetWirelessDevicesEthernetStatusesItemPort

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

GetWirelessDevicesEthernetStatusesItemPortLinkNegotiation

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

GetWirelessDevicesEthernetStatusesItemPortPoe

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

GetWirelessDevicesEthernetStatusesItemPower

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

GetWirelessDevicesEthernetStatusesItemPowerAc

IsConnected This property is required. bool
AC power connected
IsConnected This property is required. bool
AC power connected
isConnected This property is required. Boolean
AC power connected
isConnected This property is required. boolean
AC power connected
is_connected This property is required. bool
AC power connected
isConnected This property is required. Boolean
AC power connected

GetWirelessDevicesEthernetStatusesItemPowerPoe

IsConnected This property is required. bool
PoE power connected
IsConnected This property is required. bool
PoE power connected
isConnected This property is required. Boolean
PoE power connected
isConnected This property is required. boolean
PoE power connected
is_connected This property is required. bool
PoE power connected
isConnected This property is required. 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.