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);
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)
public static Output<GetWirelessDevicesEthernetStatusesResult> getWirelessDevicesEthernetStatuses(GetWirelessDevicesEthernetStatusesArgs args, InvokeOptions options)
fn::invoke:
function: meraki:organizations/getWirelessDevicesEthernetStatuses:getWirelessDevicesEthernetStatuses
arguments:
# arguments dictionary
The following arguments are supported:
- Organization
Id This property is required. string - organizationId path parameter. Organization ID
- Ending
Before 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.
- Network
Ids 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
- Per
Page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
- Starting
After 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. string - organizationId path parameter. Organization ID
- Ending
Before 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.
- Network
Ids []string - 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 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. String - organizationId path parameter. Organization ID
- ending
Before 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.
- network
Ids 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
- per
Page Integer - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
- starting
After 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. string - organizationId path parameter. Organization ID
- ending
Before 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.
- network
Ids string[] - 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 number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
- starting
After 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.
- organization
Id This property is required. String - organizationId path parameter. Organization ID
- ending
Before 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.
- network
Ids 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
- per
Page Number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
- starting
After 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<Get
Wireless Devices Ethernet Statuses Item> - Array of ResponseWirelessGetOrganizationWirelessDevicesEthernetStatuses
- Organization
Id string - organizationId path parameter. Organization ID
- Ending
Before 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.
- Network
Ids 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
- Per
Page int - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
- Starting
After 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
[]Get
Wireless Devices Ethernet Statuses Item - Array of ResponseWirelessGetOrganizationWirelessDevicesEthernetStatuses
- Organization
Id string - organizationId path parameter. Organization ID
- Ending
Before 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.
- Network
Ids []string - 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 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<Get
Wireless Devices Ethernet Statuses Item> - Array of ResponseWirelessGetOrganizationWirelessDevicesEthernetStatuses
- organization
Id String - organizationId path parameter. Organization ID
- ending
Before 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.
- network
Ids 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
- per
Page Integer - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
- starting
After 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
Get
Wireless Devices Ethernet Statuses Item[] - Array of ResponseWirelessGetOrganizationWirelessDevicesEthernetStatuses
- organization
Id string - organizationId path parameter. Organization ID
- ending
Before 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.
- network
Ids string[] - 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 number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
- starting
After 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[Get
Wireless Devices Ethernet Statuses Item] - 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
- organization
Id String - organizationId path parameter. Organization ID
- ending
Before 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.
- network
Ids 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
- per
Page Number - perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 100.
- starting
After 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. GetWireless Devices Ethernet Statuses Item Aggregation - Aggregation details object
- Name
This property is required. string - The name of the AP
- Network
This property is required. GetWireless Devices Ethernet Statuses Item Network - Network details object
- Ports
This property is required. List<GetWireless Devices Ethernet Statuses Item Port> - List of port details
- Power
This property is required. GetWireless Devices Ethernet Statuses Item Power - Power details object
- Serial
This property is required. string - The serial number of the AP
- Aggregation
This property is required. GetWireless Devices Ethernet Statuses Item Aggregation - Aggregation details object
- Name
This property is required. string - The name of the AP
- Network
This property is required. GetWireless Devices Ethernet Statuses Item Network - Network details object
- Ports
This property is required. []GetWireless Devices Ethernet Statuses Item Port - List of port details
- Power
This property is required. GetWireless Devices Ethernet Statuses Item Power - Power details object
- Serial
This property is required. string - The serial number of the AP
- aggregation
This property is required. GetWireless Devices Ethernet Statuses Item Aggregation - Aggregation details object
- name
This property is required. String - The name of the AP
- network
This property is required. GetWireless Devices Ethernet Statuses Item Network - Network details object
- ports
This property is required. List<GetWireless Devices Ethernet Statuses Item Port> - List of port details
- power
This property is required. GetWireless Devices Ethernet Statuses Item Power - Power details object
- serial
This property is required. String - The serial number of the AP
- aggregation
This property is required. GetWireless Devices Ethernet Statuses Item Aggregation - Aggregation details object
- name
This property is required. string - The name of the AP
- network
This property is required. GetWireless Devices Ethernet Statuses Item Network - Network details object
- ports
This property is required. GetWireless Devices Ethernet Statuses Item Port[] - List of port details
- power
This property is required. GetWireless Devices Ethernet Statuses Item Power - Power details object
- serial
This property is required. string - The serial number of the AP
- aggregation
This property is required. GetWireless Devices Ethernet Statuses Item Aggregation - Aggregation details object
- name
This property is required. str - The name of the AP
- network
This property is required. GetWireless Devices Ethernet Statuses Item Network - Network details object
- ports
This property is required. Sequence[GetWireless Devices Ethernet Statuses Item Port] - List of port details
- power
This property is required. GetWireless Devices Ethernet Statuses Item Power - 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
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
- Link
Negotiation This property is required. GetWireless Devices Ethernet Statuses Item Port Link Negotiation - Link negotiation details object for the port
- Name
This property is required. string - Label of the port
- Poe
This property is required. GetWireless Devices Ethernet Statuses Item Port Poe - PoE details object for the port
- Link
Negotiation This property is required. GetWireless Devices Ethernet Statuses Item Port Link Negotiation - Link negotiation details object for the port
- Name
This property is required. string - Label of the port
- Poe
This property is required. GetWireless Devices Ethernet Statuses Item Port Poe - PoE details object for the port
- link
Negotiation This property is required. GetWireless Devices Ethernet Statuses Item Port Link Negotiation - Link negotiation details object for the port
- name
This property is required. String - Label of the port
- poe
This property is required. GetWireless Devices Ethernet Statuses Item Port Poe - PoE details object for the port
- link
Negotiation This property is required. GetWireless Devices Ethernet Statuses Item Port Link Negotiation - Link negotiation details object for the port
- name
This property is required. string - Label of the port
- poe
This property is required. GetWireless Devices Ethernet Statuses Item Port Poe - PoE details object for the port
- link_
negotiation This property is required. GetWireless Devices Ethernet Statuses Item Port Link Negotiation - Link negotiation details object for the port
- name
This property is required. str - Label of the port
- poe
This property is required. GetWireless Devices Ethernet Statuses Item Port Poe - PoE details object for the port
- link
Negotiation 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
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. GetWireless Devices Ethernet Statuses Item Power Ac - 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. GetWireless Devices Ethernet Statuses Item Power Poe - PoE power details object
- Ac
This property is required. GetWireless Devices Ethernet Statuses Item Power Ac - 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. GetWireless Devices Ethernet Statuses Item Power Poe - PoE power details object
- ac
This property is required. GetWireless Devices Ethernet Statuses Item Power Ac - 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. GetWireless Devices Ethernet Statuses Item Power Poe - PoE power details object
- ac
This property is required. GetWireless Devices Ethernet Statuses Item Power Ac - 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. GetWireless Devices Ethernet Statuses Item Power Poe - PoE power details object
- ac
This property is required. GetWireless Devices Ethernet Statuses Item Power Ac - 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. GetWireless Devices Ethernet Statuses Item Power Poe - 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
- Is
Connected This property is required. bool - AC power connected
- Is
Connected This property is required. bool - AC power connected
- is
Connected This property is required. Boolean - AC power connected
- is
Connected This property is required. boolean - AC power connected
- is_
connected This property is required. bool - AC power connected
- is
Connected This property is required. Boolean - AC power connected
GetWirelessDevicesEthernetStatusesItemPowerPoe
- Is
Connected This property is required. bool - PoE power connected
- Is
Connected This property is required. bool - PoE power connected
- is
Connected This property is required. Boolean - PoE power connected
- is
Connected This property is required. boolean - PoE power connected
- is_
connected This property is required. bool - PoE power connected
- is
Connected 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.