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

meraki.networks.getSwitchDhcpV4ServersSeen

Explore with Pulumi AI

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";

const example = meraki.networks.getSwitchDhcpV4ServersSeen({
    endingBefore: "string",
    networkId: "string",
    perPage: 1,
    startingAfter: "string",
    t0: "string",
    timespan: 1,
});
export const merakiNetworksSwitchDhcpV4ServersSeenExample = example.then(example => example.items);
Copy
import pulumi
import pulumi_meraki as meraki

example = meraki.networks.get_switch_dhcp_v4_servers_seen(ending_before="string",
    network_id="string",
    per_page=1,
    starting_after="string",
    t0="string",
    timespan=1)
pulumi.export("merakiNetworksSwitchDhcpV4ServersSeenExample", example.items)
Copy
package main

import (
	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/networks"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := networks.GetSwitchDhcpV4ServersSeen(ctx, &networks.GetSwitchDhcpV4ServersSeenArgs{
			EndingBefore:  pulumi.StringRef("string"),
			NetworkId:     "string",
			PerPage:       pulumi.IntRef(1),
			StartingAfter: pulumi.StringRef("string"),
			T0:            pulumi.StringRef("string"),
			Timespan:      pulumi.Float64Ref(1),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("merakiNetworksSwitchDhcpV4ServersSeenExample", 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.Networks.GetSwitchDhcpV4ServersSeen.Invoke(new()
    {
        EndingBefore = "string",
        NetworkId = "string",
        PerPage = 1,
        StartingAfter = "string",
        T0 = "string",
        Timespan = 1,
    });

    return new Dictionary<string, object?>
    {
        ["merakiNetworksSwitchDhcpV4ServersSeenExample"] = example.Apply(getSwitchDhcpV4ServersSeenResult => getSwitchDhcpV4ServersSeenResult.Items),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.networks.NetworksFunctions;
import com.pulumi.meraki.networks.inputs.GetSwitchDhcpV4ServersSeenArgs;
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 = NetworksFunctions.getSwitchDhcpV4ServersSeen(GetSwitchDhcpV4ServersSeenArgs.builder()
            .endingBefore("string")
            .networkId("string")
            .perPage(1)
            .startingAfter("string")
            .t0("string")
            .timespan(1)
            .build());

        ctx.export("merakiNetworksSwitchDhcpV4ServersSeenExample", example.applyValue(getSwitchDhcpV4ServersSeenResult -> getSwitchDhcpV4ServersSeenResult.items()));
    }
}
Copy
variables:
  example:
    fn::invoke:
      function: meraki:networks:getSwitchDhcpV4ServersSeen
      arguments:
        endingBefore: string
        networkId: string
        perPage: 1
        startingAfter: string
        t0: string
        timespan: 1
outputs:
  merakiNetworksSwitchDhcpV4ServersSeenExample: ${example.items}
Copy

Using getSwitchDhcpV4ServersSeen

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 getSwitchDhcpV4ServersSeen(args: GetSwitchDhcpV4ServersSeenArgs, opts?: InvokeOptions): Promise<GetSwitchDhcpV4ServersSeenResult>
function getSwitchDhcpV4ServersSeenOutput(args: GetSwitchDhcpV4ServersSeenOutputArgs, opts?: InvokeOptions): Output<GetSwitchDhcpV4ServersSeenResult>
Copy
def get_switch_dhcp_v4_servers_seen(ending_before: Optional[str] = None,
                                    network_id: Optional[str] = None,
                                    per_page: Optional[int] = None,
                                    starting_after: Optional[str] = None,
                                    t0: Optional[str] = None,
                                    timespan: Optional[float] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetSwitchDhcpV4ServersSeenResult
def get_switch_dhcp_v4_servers_seen_output(ending_before: Optional[pulumi.Input[str]] = None,
                                    network_id: Optional[pulumi.Input[str]] = None,
                                    per_page: Optional[pulumi.Input[int]] = None,
                                    starting_after: Optional[pulumi.Input[str]] = None,
                                    t0: Optional[pulumi.Input[str]] = None,
                                    timespan: Optional[pulumi.Input[float]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetSwitchDhcpV4ServersSeenResult]
Copy
func GetSwitchDhcpV4ServersSeen(ctx *Context, args *GetSwitchDhcpV4ServersSeenArgs, opts ...InvokeOption) (*GetSwitchDhcpV4ServersSeenResult, error)
func GetSwitchDhcpV4ServersSeenOutput(ctx *Context, args *GetSwitchDhcpV4ServersSeenOutputArgs, opts ...InvokeOption) GetSwitchDhcpV4ServersSeenResultOutput
Copy

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

public static class GetSwitchDhcpV4ServersSeen 
{
    public static Task<GetSwitchDhcpV4ServersSeenResult> InvokeAsync(GetSwitchDhcpV4ServersSeenArgs args, InvokeOptions? opts = null)
    public static Output<GetSwitchDhcpV4ServersSeenResult> Invoke(GetSwitchDhcpV4ServersSeenInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetSwitchDhcpV4ServersSeenResult> getSwitchDhcpV4ServersSeen(GetSwitchDhcpV4ServersSeenArgs args, InvokeOptions options)
public static Output<GetSwitchDhcpV4ServersSeenResult> getSwitchDhcpV4ServersSeen(GetSwitchDhcpV4ServersSeenArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: meraki:networks/getSwitchDhcpV4ServersSeen:getSwitchDhcpV4ServersSeen
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

NetworkId This property is required. string
networkId path parameter. Network 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.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
StartingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
Timespan double
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
NetworkId This property is required. string
networkId path parameter. Network 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.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
StartingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
Timespan float64
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
networkId This property is required. String
networkId path parameter. Network 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.
perPage Integer
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
startingAfter String
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
timespan Double
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
networkId This property is required. string
networkId path parameter. Network 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.
perPage number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
startingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
t0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
timespan number
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
network_id This property is required. str
networkId path parameter. Network 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.
per_page int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
starting_after str
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
t0 str
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
timespan float
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
networkId This property is required. String
networkId path parameter. Network 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.
perPage Number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
startingAfter String
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
timespan Number
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.

getSwitchDhcpV4ServersSeen Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Items List<GetSwitchDhcpV4ServersSeenItem>
Array of ResponseSwitchGetNetworkSwitchDhcpV4ServersSeen
NetworkId string
networkId path parameter. Network 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.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
StartingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
Timespan double
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
Id string
The provider-assigned unique ID for this managed resource.
Items []GetSwitchDhcpV4ServersSeenItem
Array of ResponseSwitchGetNetworkSwitchDhcpV4ServersSeen
NetworkId string
networkId path parameter. Network 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.
PerPage int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
StartingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
T0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
Timespan float64
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
id String
The provider-assigned unique ID for this managed resource.
items List<GetSwitchDhcpV4ServersSeenItem>
Array of ResponseSwitchGetNetworkSwitchDhcpV4ServersSeen
networkId String
networkId path parameter. Network 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.
perPage Integer
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
startingAfter String
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
timespan Double
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
id string
The provider-assigned unique ID for this managed resource.
items GetSwitchDhcpV4ServersSeenItem[]
Array of ResponseSwitchGetNetworkSwitchDhcpV4ServersSeen
networkId string
networkId path parameter. Network 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.
perPage number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
startingAfter string
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
t0 string
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
timespan number
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
id str
The provider-assigned unique ID for this managed resource.
items Sequence[GetSwitchDhcpV4ServersSeenItem]
Array of ResponseSwitchGetNetworkSwitchDhcpV4ServersSeen
network_id str
networkId path parameter. Network 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.
per_page int
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
starting_after str
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
t0 str
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
timespan float
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.
id String
The provider-assigned unique ID for this managed resource.
items List<Property Map>
Array of ResponseSwitchGetNetworkSwitchDhcpV4ServersSeen
networkId String
networkId path parameter. Network 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.
perPage Number
perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
startingAfter String
startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
t0 String
t0 query parameter. The beginning of the timespan for the data. The maximum lookback period is 31 days from today.
timespan Number
timespan query parameter. The timespan for which the information will be fetched. If specifying timespan, do not specify parameter t0. The value must be in seconds and be less than or equal to 31 days. The default is 1 day.

Supporting Types

GetSwitchDhcpV4ServersSeenItem

ClientId This property is required. string
Client id of the server if available.
Device This property is required. GetSwitchDhcpV4ServersSeenItemDevice
Attributes of the server when it's a device.
Ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemIpv4
IPv4 attributes of the server.
IsAllowed This property is required. bool
Whether the server is allowed or blocked. Always true for configured servers.
IsConfigured This property is required. bool
Whether the server is configured.
LastAck This property is required. GetSwitchDhcpV4ServersSeenItemLastAck
Attributes of the server's last ack.
LastPacket This property is required. GetSwitchDhcpV4ServersSeenItemLastPacket
Last packet the server received.
LastSeenAt This property is required. string
Last time the server was seen.
Mac This property is required. string
Mac address of the server.
SeenBies This property is required. List<GetSwitchDhcpV4ServersSeenItemSeenBy>
Devices that saw the server.
Type This property is required. string
server type. Can be a 'device', 'stack', or 'discovered' (i.e client).
Vlan This property is required. int
Vlan id of the server.
ClientId This property is required. string
Client id of the server if available.
Device This property is required. GetSwitchDhcpV4ServersSeenItemDevice
Attributes of the server when it's a device.
Ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemIpv4
IPv4 attributes of the server.
IsAllowed This property is required. bool
Whether the server is allowed or blocked. Always true for configured servers.
IsConfigured This property is required. bool
Whether the server is configured.
LastAck This property is required. GetSwitchDhcpV4ServersSeenItemLastAck
Attributes of the server's last ack.
LastPacket This property is required. GetSwitchDhcpV4ServersSeenItemLastPacket
Last packet the server received.
LastSeenAt This property is required. string
Last time the server was seen.
Mac This property is required. string
Mac address of the server.
SeenBies This property is required. []GetSwitchDhcpV4ServersSeenItemSeenBy
Devices that saw the server.
Type This property is required. string
server type. Can be a 'device', 'stack', or 'discovered' (i.e client).
Vlan This property is required. int
Vlan id of the server.
clientId This property is required. String
Client id of the server if available.
device This property is required. GetSwitchDhcpV4ServersSeenItemDevice
Attributes of the server when it's a device.
ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemIpv4
IPv4 attributes of the server.
isAllowed This property is required. Boolean
Whether the server is allowed or blocked. Always true for configured servers.
isConfigured This property is required. Boolean
Whether the server is configured.
lastAck This property is required. GetSwitchDhcpV4ServersSeenItemLastAck
Attributes of the server's last ack.
lastPacket This property is required. GetSwitchDhcpV4ServersSeenItemLastPacket
Last packet the server received.
lastSeenAt This property is required. String
Last time the server was seen.
mac This property is required. String
Mac address of the server.
seenBies This property is required. List<GetSwitchDhcpV4ServersSeenItemSeenBy>
Devices that saw the server.
type This property is required. String
server type. Can be a 'device', 'stack', or 'discovered' (i.e client).
vlan This property is required. Integer
Vlan id of the server.
clientId This property is required. string
Client id of the server if available.
device This property is required. GetSwitchDhcpV4ServersSeenItemDevice
Attributes of the server when it's a device.
ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemIpv4
IPv4 attributes of the server.
isAllowed This property is required. boolean
Whether the server is allowed or blocked. Always true for configured servers.
isConfigured This property is required. boolean
Whether the server is configured.
lastAck This property is required. GetSwitchDhcpV4ServersSeenItemLastAck
Attributes of the server's last ack.
lastPacket This property is required. GetSwitchDhcpV4ServersSeenItemLastPacket
Last packet the server received.
lastSeenAt This property is required. string
Last time the server was seen.
mac This property is required. string
Mac address of the server.
seenBies This property is required. GetSwitchDhcpV4ServersSeenItemSeenBy[]
Devices that saw the server.
type This property is required. string
server type. Can be a 'device', 'stack', or 'discovered' (i.e client).
vlan This property is required. number
Vlan id of the server.
client_id This property is required. str
Client id of the server if available.
device This property is required. GetSwitchDhcpV4ServersSeenItemDevice
Attributes of the server when it's a device.
ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemIpv4
IPv4 attributes of the server.
is_allowed This property is required. bool
Whether the server is allowed or blocked. Always true for configured servers.
is_configured This property is required. bool
Whether the server is configured.
last_ack This property is required. GetSwitchDhcpV4ServersSeenItemLastAck
Attributes of the server's last ack.
last_packet This property is required. GetSwitchDhcpV4ServersSeenItemLastPacket
Last packet the server received.
last_seen_at This property is required. str
Last time the server was seen.
mac This property is required. str
Mac address of the server.
seen_bies This property is required. Sequence[GetSwitchDhcpV4ServersSeenItemSeenBy]
Devices that saw the server.
type This property is required. str
server type. Can be a 'device', 'stack', or 'discovered' (i.e client).
vlan This property is required. int
Vlan id of the server.
clientId This property is required. String
Client id of the server if available.
device This property is required. Property Map
Attributes of the server when it's a device.
ipv4 This property is required. Property Map
IPv4 attributes of the server.
isAllowed This property is required. Boolean
Whether the server is allowed or blocked. Always true for configured servers.
isConfigured This property is required. Boolean
Whether the server is configured.
lastAck This property is required. Property Map
Attributes of the server's last ack.
lastPacket This property is required. Property Map
Last packet the server received.
lastSeenAt This property is required. String
Last time the server was seen.
mac This property is required. String
Mac address of the server.
seenBies This property is required. List<Property Map>
Devices that saw the server.
type This property is required. String
server type. Can be a 'device', 'stack', or 'discovered' (i.e client).
vlan This property is required. Number
Vlan id of the server.

GetSwitchDhcpV4ServersSeenItemDevice

Interface This property is required. GetSwitchDhcpV4ServersSeenItemDeviceInterface
Interface attributes of the server. Only for configured servers.
Name This property is required. string
Device name.
Serial This property is required. string
Device serial.
Url This property is required. string
Url link to device.
Interface This property is required. GetSwitchDhcpV4ServersSeenItemDeviceInterface
Interface attributes of the server. Only for configured servers.
Name This property is required. string
Device name.
Serial This property is required. string
Device serial.
Url This property is required. string
Url link to device.
interface_ This property is required. GetSwitchDhcpV4ServersSeenItemDeviceInterface
Interface attributes of the server. Only for configured servers.
name This property is required. String
Device name.
serial This property is required. String
Device serial.
url This property is required. String
Url link to device.
interface This property is required. GetSwitchDhcpV4ServersSeenItemDeviceInterface
Interface attributes of the server. Only for configured servers.
name This property is required. string
Device name.
serial This property is required. string
Device serial.
url This property is required. string
Url link to device.
interface This property is required. GetSwitchDhcpV4ServersSeenItemDeviceInterface
Interface attributes of the server. Only for configured servers.
name This property is required. str
Device name.
serial This property is required. str
Device serial.
url This property is required. str
Url link to device.
interface This property is required. Property Map
Interface attributes of the server. Only for configured servers.
name This property is required. String
Device name.
serial This property is required. String
Device serial.
url This property is required. String
Url link to device.

GetSwitchDhcpV4ServersSeenItemDeviceInterface

Name This property is required. string
Interface name.
Url This property is required. string
Url link to interface.
Name This property is required. string
Interface name.
Url This property is required. string
Url link to interface.
name This property is required. String
Interface name.
url This property is required. String
Url link to interface.
name This property is required. string
Interface name.
url This property is required. string
Url link to interface.
name This property is required. str
Interface name.
url This property is required. str
Url link to interface.
name This property is required. String
Interface name.
url This property is required. String
Url link to interface.

GetSwitchDhcpV4ServersSeenItemIpv4

Address This property is required. string
IPv4 address of the server.
Gateway This property is required. string
IPv4 gateway address of the server.
Subnet This property is required. string
Subnet of the server.
Address This property is required. string
IPv4 address of the server.
Gateway This property is required. string
IPv4 gateway address of the server.
Subnet This property is required. string
Subnet of the server.
address This property is required. String
IPv4 address of the server.
gateway This property is required. String
IPv4 gateway address of the server.
subnet This property is required. String
Subnet of the server.
address This property is required. string
IPv4 address of the server.
gateway This property is required. string
IPv4 gateway address of the server.
subnet This property is required. string
Subnet of the server.
address This property is required. str
IPv4 address of the server.
gateway This property is required. str
IPv4 gateway address of the server.
subnet This property is required. str
Subnet of the server.
address This property is required. String
IPv4 address of the server.
gateway This property is required. String
IPv4 gateway address of the server.
subnet This property is required. String
Subnet of the server.

GetSwitchDhcpV4ServersSeenItemLastAck

Ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastAckIpv4
IPv4 attributes of the last ack.
Ts This property is required. string
Last time the server was acked.
Ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastAckIpv4
IPv4 attributes of the last ack.
Ts This property is required. string
Last time the server was acked.
ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastAckIpv4
IPv4 attributes of the last ack.
ts This property is required. String
Last time the server was acked.
ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastAckIpv4
IPv4 attributes of the last ack.
ts This property is required. string
Last time the server was acked.
ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastAckIpv4
IPv4 attributes of the last ack.
ts This property is required. str
Last time the server was acked.
ipv4 This property is required. Property Map
IPv4 attributes of the last ack.
ts This property is required. String
Last time the server was acked.

GetSwitchDhcpV4ServersSeenItemLastAckIpv4

Address This property is required. string
IPv4 address of the last ack.
Address This property is required. string
IPv4 address of the last ack.
address This property is required. String
IPv4 address of the last ack.
address This property is required. string
IPv4 address of the last ack.
address This property is required. str
IPv4 address of the last ack.
address This property is required. String
IPv4 address of the last ack.

GetSwitchDhcpV4ServersSeenItemLastPacket

Destination This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketDestination
Destination of the packet.
Ethernet This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketEthernet
Additional ethernet attributes of the packet.
Fields This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketFields
DHCP-specific fields of the packet.
Ip This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketIp
Additional IP attributes of the packet.
Source This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketSource
Source of the packet.
Type This property is required. string
Packet type.
Udp This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketUdp
UDP attributes of the packet.
Destination This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketDestination
Destination of the packet.
Ethernet This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketEthernet
Additional ethernet attributes of the packet.
Fields This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketFields
DHCP-specific fields of the packet.
Ip This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketIp
Additional IP attributes of the packet.
Source This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketSource
Source of the packet.
Type This property is required. string
Packet type.
Udp This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketUdp
UDP attributes of the packet.
destination This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketDestination
Destination of the packet.
ethernet This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketEthernet
Additional ethernet attributes of the packet.
fields This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketFields
DHCP-specific fields of the packet.
ip This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketIp
Additional IP attributes of the packet.
source This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketSource
Source of the packet.
type This property is required. String
Packet type.
udp This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketUdp
UDP attributes of the packet.
destination This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketDestination
Destination of the packet.
ethernet This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketEthernet
Additional ethernet attributes of the packet.
fields This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketFields
DHCP-specific fields of the packet.
ip This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketIp
Additional IP attributes of the packet.
source This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketSource
Source of the packet.
type This property is required. string
Packet type.
udp This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketUdp
UDP attributes of the packet.
destination This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketDestination
Destination of the packet.
ethernet This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketEthernet
Additional ethernet attributes of the packet.
fields This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketFields
DHCP-specific fields of the packet.
ip This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketIp
Additional IP attributes of the packet.
source This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketSource
Source of the packet.
type This property is required. str
Packet type.
udp This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketUdp
UDP attributes of the packet.
destination This property is required. Property Map
Destination of the packet.
ethernet This property is required. Property Map
Additional ethernet attributes of the packet.
fields This property is required. Property Map
DHCP-specific fields of the packet.
ip This property is required. Property Map
Additional IP attributes of the packet.
source This property is required. Property Map
Source of the packet.
type This property is required. String
Packet type.
udp This property is required. Property Map
UDP attributes of the packet.

GetSwitchDhcpV4ServersSeenItemLastPacketDestination

Ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4
Destination ipv4 attributes of the packet.
Mac This property is required. string
Destination mac address of the packet.
Port This property is required. int
Destination port of the packet.
Ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4
Destination ipv4 attributes of the packet.
Mac This property is required. string
Destination mac address of the packet.
Port This property is required. int
Destination port of the packet.
ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4
Destination ipv4 attributes of the packet.
mac This property is required. String
Destination mac address of the packet.
port This property is required. Integer
Destination port of the packet.
ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4
Destination ipv4 attributes of the packet.
mac This property is required. string
Destination mac address of the packet.
port This property is required. number
Destination port of the packet.
ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4
Destination ipv4 attributes of the packet.
mac This property is required. str
Destination mac address of the packet.
port This property is required. int
Destination port of the packet.
ipv4 This property is required. Property Map
Destination ipv4 attributes of the packet.
mac This property is required. String
Destination mac address of the packet.
port This property is required. Number
Destination port of the packet.

GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4

Address This property is required. string
Destination ipv4 address of the packet.
Address This property is required. string
Destination ipv4 address of the packet.
address This property is required. String
Destination ipv4 address of the packet.
address This property is required. string
Destination ipv4 address of the packet.
address This property is required. str
Destination ipv4 address of the packet.
address This property is required. String
Destination ipv4 address of the packet.

GetSwitchDhcpV4ServersSeenItemLastPacketEthernet

Type This property is required. string
Ethernet type of the packet.
Type This property is required. string
Ethernet type of the packet.
type This property is required. String
Ethernet type of the packet.
type This property is required. string
Ethernet type of the packet.
type This property is required. str
Ethernet type of the packet.
type This property is required. String
Ethernet type of the packet.

GetSwitchDhcpV4ServersSeenItemLastPacketFields

Chaddr This property is required. string
Client hardware address of the packet.
Ciaddr This property is required. string
Client IP address of the packet.
Flags This property is required. string
Packet flags.
Giaddr This property is required. string
Gateway IP address of the packet.
Hlen This property is required. int
Hardware length of the packet.
Hops This property is required. int
Number of hops the packet took.
Htype This property is required. int
Hardware type code of the packet.
MagicCookie This property is required. string
Magic cookie of the packet.
Op This property is required. int
Operation code of the packet.
Options This property is required. List<GetSwitchDhcpV4ServersSeenItemLastPacketFieldsOption>
Additional DHCP options of the packet.
Secs This property is required. int
Number of seconds since receiving the packet.
Siaddr This property is required. string
Server IP address of the packet.
Sname This property is required. string
Server identifier address of the packet.
Xid This property is required. string
Transaction id of the packet.
Yiaddr This property is required. string
Assigned IP address of the packet.
Chaddr This property is required. string
Client hardware address of the packet.
Ciaddr This property is required. string
Client IP address of the packet.
Flags This property is required. string
Packet flags.
Giaddr This property is required. string
Gateway IP address of the packet.
Hlen This property is required. int
Hardware length of the packet.
Hops This property is required. int
Number of hops the packet took.
Htype This property is required. int
Hardware type code of the packet.
MagicCookie This property is required. string
Magic cookie of the packet.
Op This property is required. int
Operation code of the packet.
Options This property is required. []GetSwitchDhcpV4ServersSeenItemLastPacketFieldsOption
Additional DHCP options of the packet.
Secs This property is required. int
Number of seconds since receiving the packet.
Siaddr This property is required. string
Server IP address of the packet.
Sname This property is required. string
Server identifier address of the packet.
Xid This property is required. string
Transaction id of the packet.
Yiaddr This property is required. string
Assigned IP address of the packet.
chaddr This property is required. String
Client hardware address of the packet.
ciaddr This property is required. String
Client IP address of the packet.
flags This property is required. String
Packet flags.
giaddr This property is required. String
Gateway IP address of the packet.
hlen This property is required. Integer
Hardware length of the packet.
hops This property is required. Integer
Number of hops the packet took.
htype This property is required. Integer
Hardware type code of the packet.
magicCookie This property is required. String
Magic cookie of the packet.
op This property is required. Integer
Operation code of the packet.
options This property is required. List<GetSwitchDhcpV4ServersSeenItemLastPacketFieldsOption>
Additional DHCP options of the packet.
secs This property is required. Integer
Number of seconds since receiving the packet.
siaddr This property is required. String
Server IP address of the packet.
sname This property is required. String
Server identifier address of the packet.
xid This property is required. String
Transaction id of the packet.
yiaddr This property is required. String
Assigned IP address of the packet.
chaddr This property is required. string
Client hardware address of the packet.
ciaddr This property is required. string
Client IP address of the packet.
flags This property is required. string
Packet flags.
giaddr This property is required. string
Gateway IP address of the packet.
hlen This property is required. number
Hardware length of the packet.
hops This property is required. number
Number of hops the packet took.
htype This property is required. number
Hardware type code of the packet.
magicCookie This property is required. string
Magic cookie of the packet.
op This property is required. number
Operation code of the packet.
options This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketFieldsOption[]
Additional DHCP options of the packet.
secs This property is required. number
Number of seconds since receiving the packet.
siaddr This property is required. string
Server IP address of the packet.
sname This property is required. string
Server identifier address of the packet.
xid This property is required. string
Transaction id of the packet.
yiaddr This property is required. string
Assigned IP address of the packet.
chaddr This property is required. str
Client hardware address of the packet.
ciaddr This property is required. str
Client IP address of the packet.
flags This property is required. str
Packet flags.
giaddr This property is required. str
Gateway IP address of the packet.
hlen This property is required. int
Hardware length of the packet.
hops This property is required. int
Number of hops the packet took.
htype This property is required. int
Hardware type code of the packet.
magic_cookie This property is required. str
Magic cookie of the packet.
op This property is required. int
Operation code of the packet.
options This property is required. Sequence[GetSwitchDhcpV4ServersSeenItemLastPacketFieldsOption]
Additional DHCP options of the packet.
secs This property is required. int
Number of seconds since receiving the packet.
siaddr This property is required. str
Server IP address of the packet.
sname This property is required. str
Server identifier address of the packet.
xid This property is required. str
Transaction id of the packet.
yiaddr This property is required. str
Assigned IP address of the packet.
chaddr This property is required. String
Client hardware address of the packet.
ciaddr This property is required. String
Client IP address of the packet.
flags This property is required. String
Packet flags.
giaddr This property is required. String
Gateway IP address of the packet.
hlen This property is required. Number
Hardware length of the packet.
hops This property is required. Number
Number of hops the packet took.
htype This property is required. Number
Hardware type code of the packet.
magicCookie This property is required. String
Magic cookie of the packet.
op This property is required. Number
Operation code of the packet.
options This property is required. List<Property Map>
Additional DHCP options of the packet.
secs This property is required. Number
Number of seconds since receiving the packet.
siaddr This property is required. String
Server IP address of the packet.
sname This property is required. String
Server identifier address of the packet.
xid This property is required. String
Transaction id of the packet.
yiaddr This property is required. String
Assigned IP address of the packet.

GetSwitchDhcpV4ServersSeenItemLastPacketFieldsOption

Name This property is required. string
Option name.
Value This property is required. string
Option value.
Name This property is required. string
Option name.
Value This property is required. string
Option value.
name This property is required. String
Option name.
value This property is required. String
Option value.
name This property is required. string
Option name.
value This property is required. string
Option value.
name This property is required. str
Option name.
value This property is required. str
Option value.
name This property is required. String
Option name.
value This property is required. String
Option value.

GetSwitchDhcpV4ServersSeenItemLastPacketIp

Dscp This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketIpDscp
DSCP attributes of the packet.
HeaderLength This property is required. int
IP header length of the packet.
Id This property is required. string
IP ID of the packet.
Length This property is required. int
IP length of the packet.
Protocol This property is required. int
IP protocol number of the packet.
Ttl This property is required. int
Time to live of the packet.
Version This property is required. int
IP version of the packet.
Dscp This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketIpDscp
DSCP attributes of the packet.
HeaderLength This property is required. int
IP header length of the packet.
Id This property is required. string
IP ID of the packet.
Length This property is required. int
IP length of the packet.
Protocol This property is required. int
IP protocol number of the packet.
Ttl This property is required. int
Time to live of the packet.
Version This property is required. int
IP version of the packet.
dscp This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketIpDscp
DSCP attributes of the packet.
headerLength This property is required. Integer
IP header length of the packet.
id This property is required. String
IP ID of the packet.
length This property is required. Integer
IP length of the packet.
protocol This property is required. Integer
IP protocol number of the packet.
ttl This property is required. Integer
Time to live of the packet.
version This property is required. Integer
IP version of the packet.
dscp This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketIpDscp
DSCP attributes of the packet.
headerLength This property is required. number
IP header length of the packet.
id This property is required. string
IP ID of the packet.
length This property is required. number
IP length of the packet.
protocol This property is required. number
IP protocol number of the packet.
ttl This property is required. number
Time to live of the packet.
version This property is required. number
IP version of the packet.
dscp This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketIpDscp
DSCP attributes of the packet.
header_length This property is required. int
IP header length of the packet.
id This property is required. str
IP ID of the packet.
length This property is required. int
IP length of the packet.
protocol This property is required. int
IP protocol number of the packet.
ttl This property is required. int
Time to live of the packet.
version This property is required. int
IP version of the packet.
dscp This property is required. Property Map
DSCP attributes of the packet.
headerLength This property is required. Number
IP header length of the packet.
id This property is required. String
IP ID of the packet.
length This property is required. Number
IP length of the packet.
protocol This property is required. Number
IP protocol number of the packet.
ttl This property is required. Number
Time to live of the packet.
version This property is required. Number
IP version of the packet.

GetSwitchDhcpV4ServersSeenItemLastPacketIpDscp

Ecn This property is required. int
ECN number of the packet.
Tag This property is required. int
DSCP tag number of the packet.
Ecn This property is required. int
ECN number of the packet.
Tag This property is required. int
DSCP tag number of the packet.
ecn This property is required. Integer
ECN number of the packet.
tag This property is required. Integer
DSCP tag number of the packet.
ecn This property is required. number
ECN number of the packet.
tag This property is required. number
DSCP tag number of the packet.
ecn This property is required. int
ECN number of the packet.
tag This property is required. int
DSCP tag number of the packet.
ecn This property is required. Number
ECN number of the packet.
tag This property is required. Number
DSCP tag number of the packet.

GetSwitchDhcpV4ServersSeenItemLastPacketSource

Ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketSourceIpv4
Source ipv4 attributes of the packet.
Mac This property is required. string
Source mac address of the packet.
Port This property is required. int
Source port of the packet.
Ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketSourceIpv4
Source ipv4 attributes of the packet.
Mac This property is required. string
Source mac address of the packet.
Port This property is required. int
Source port of the packet.
ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketSourceIpv4
Source ipv4 attributes of the packet.
mac This property is required. String
Source mac address of the packet.
port This property is required. Integer
Source port of the packet.
ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketSourceIpv4
Source ipv4 attributes of the packet.
mac This property is required. string
Source mac address of the packet.
port This property is required. number
Source port of the packet.
ipv4 This property is required. GetSwitchDhcpV4ServersSeenItemLastPacketSourceIpv4
Source ipv4 attributes of the packet.
mac This property is required. str
Source mac address of the packet.
port This property is required. int
Source port of the packet.
ipv4 This property is required. Property Map
Source ipv4 attributes of the packet.
mac This property is required. String
Source mac address of the packet.
port This property is required. Number
Source port of the packet.

GetSwitchDhcpV4ServersSeenItemLastPacketSourceIpv4

Address This property is required. string
Source ipv4 address of the packet.
Address This property is required. string
Source ipv4 address of the packet.
address This property is required. String
Source ipv4 address of the packet.
address This property is required. string
Source ipv4 address of the packet.
address This property is required. str
Source ipv4 address of the packet.
address This property is required. String
Source ipv4 address of the packet.

GetSwitchDhcpV4ServersSeenItemLastPacketUdp

Checksum This property is required. string
UDP checksum of the packet.
Length This property is required. int
UDP length of the packet.
Checksum This property is required. string
UDP checksum of the packet.
Length This property is required. int
UDP length of the packet.
checksum This property is required. String
UDP checksum of the packet.
length This property is required. Integer
UDP length of the packet.
checksum This property is required. string
UDP checksum of the packet.
length This property is required. number
UDP length of the packet.
checksum This property is required. str
UDP checksum of the packet.
length This property is required. int
UDP length of the packet.
checksum This property is required. String
UDP checksum of the packet.
length This property is required. Number
UDP length of the packet.

GetSwitchDhcpV4ServersSeenItemSeenBy

Name This property is required. string
Device name.
Serial This property is required. string
Device serial.
Url This property is required. string
Url link to device.
Name This property is required. string
Device name.
Serial This property is required. string
Device serial.
Url This property is required. string
Url link to device.
name This property is required. String
Device name.
serial This property is required. String
Device serial.
url This property is required. String
Url link to device.
name This property is required. string
Device name.
serial This property is required. string
Device serial.
url This property is required. string
Url link to device.
name This property is required. str
Device name.
serial This property is required. str
Device serial.
url This property is required. str
Url link to device.
name This property is required. String
Device name.
serial This property is required. String
Device serial.
url This property is required. String
Url link to device.

Package Details

Repository
meraki pulumi/pulumi-meraki
License
Apache-2.0
Notes
This Pulumi package is based on the meraki Terraform Provider.