Cisco Meraki v0.4.4 published on Wednesday, Oct 22, 2025 by Pulumi
meraki.organizations.getWirelessDevicesEthernetStatuses
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.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 dictionaryThe 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<GetWireless Devices Ethernet Statuses Item> 
- 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
[]GetWireless Devices Ethernet Statuses Item 
- 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<GetWireless Devices Ethernet Statuses Item> 
- 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
GetWireless Devices Ethernet Statuses Item[] 
- 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[GetWireless 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
- 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
GetWireless Devices Ethernet Statuses Item Aggregation 
- Aggregation details object
- Name string
- The name of the AP
- Network
GetWireless Devices Ethernet Statuses Item Network 
- Network details object
- Ports
List<GetWireless Devices Ethernet Statuses Item Port> 
- List of port details
- Power
GetWireless Devices Ethernet Statuses Item Power 
- Power details object
- Serial string
- The serial number of the AP
- Aggregation
GetWireless Devices Ethernet Statuses Item Aggregation 
- Aggregation details object
- Name string
- The name of the AP
- Network
GetWireless Devices Ethernet Statuses Item Network 
- Network details object
- Ports
[]GetWireless Devices Ethernet Statuses Item Port 
- List of port details
- Power
GetWireless Devices Ethernet Statuses Item Power 
- Power details object
- Serial string
- The serial number of the AP
- aggregation
GetWireless Devices Ethernet Statuses Item Aggregation 
- Aggregation details object
- name String
- The name of the AP
- network
GetWireless Devices Ethernet Statuses Item Network 
- Network details object
- ports
List<GetWireless Devices Ethernet Statuses Item Port> 
- List of port details
- power
GetWireless Devices Ethernet Statuses Item Power 
- Power details object
- serial String
- The serial number of the AP
- aggregation
GetWireless Devices Ethernet Statuses Item Aggregation 
- Aggregation details object
- name string
- The name of the AP
- network
GetWireless Devices Ethernet Statuses Item Network 
- Network details object
- ports
GetWireless Devices Ethernet Statuses Item Port[] 
- List of port details
- power
GetWireless Devices Ethernet Statuses Item Power 
- Power details object
- serial string
- The serial number of the AP
- aggregation
GetWireless Devices Ethernet Statuses Item Aggregation 
- Aggregation details object
- name str
- The name of the AP
- network
GetWireless Devices Ethernet Statuses Item Network 
- Network details object
- ports
Sequence[GetWireless Devices Ethernet Statuses Item Port] 
- List of port details
- power
GetWireless Devices Ethernet Statuses Item Power 
- Power details object
- serial str
- 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      
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 GetWireless Devices Ethernet Statuses Item Port Link Negotiation 
- Link negotiation details object for the port
- Name string
- Label of the port
- Poe
GetWireless Devices Ethernet Statuses Item Port Poe 
- PoE details object for the port
- LinkNegotiation GetWireless Devices Ethernet Statuses Item Port Link Negotiation 
- Link negotiation details object for the port
- Name string
- Label of the port
- Poe
GetWireless Devices Ethernet Statuses Item Port Poe 
- PoE details object for the port
- linkNegotiation GetWireless Devices Ethernet Statuses Item Port Link Negotiation 
- Link negotiation details object for the port
- name String
- Label of the port
- poe
GetWireless Devices Ethernet Statuses Item Port Poe 
- PoE details object for the port
- linkNegotiation GetWireless Devices Ethernet Statuses Item Port Link Negotiation 
- Link negotiation details object for the port
- name string
- Label of the port
- poe
GetWireless Devices Ethernet Statuses Item Port Poe 
- PoE details object for the port
- link_negotiation GetWireless Devices Ethernet Statuses Item Port Link Negotiation 
- Link negotiation details object for the port
- name str
- Label of the port
- poe
GetWireless Devices Ethernet Statuses Item Port Poe 
- 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        
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
GetWireless Devices Ethernet Statuses Item Power Ac 
- AC power details object
- Mode string
- The PoE power mode for the AP. Can be 'full' or 'low'
- Poe
GetWireless Devices Ethernet Statuses Item Power Poe 
- PoE power details object
- Ac
GetWireless Devices Ethernet Statuses Item Power Ac 
- AC power details object
- Mode string
- The PoE power mode for the AP. Can be 'full' or 'low'
- Poe
GetWireless Devices Ethernet Statuses Item Power Poe 
- PoE power details object
- ac
GetWireless Devices Ethernet Statuses Item Power Ac 
- AC power details object
- mode String
- The PoE power mode for the AP. Can be 'full' or 'low'
- poe
GetWireless Devices Ethernet Statuses Item Power Poe 
- PoE power details object
- ac
GetWireless Devices Ethernet Statuses Item Power Ac 
- AC power details object
- mode string
- The PoE power mode for the AP. Can be 'full' or 'low'
- poe
GetWireless Devices Ethernet Statuses Item Power Poe 
- PoE power details object
- ac
GetWireless Devices Ethernet Statuses Item Power Ac 
- AC power details object
- mode str
- The PoE power mode for the AP. Can be 'full' or 'low'
- poe
GetWireless Devices Ethernet Statuses Item Power Poe 
- 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 merakiTerraform Provider.
 
