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

meraki.networks.getSwitchDhcpV4ServersSeen

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as meraki from "@pulumi/meraki";
    
    const example = meraki.networks.getSwitchDhcpV4ServersSeen({
        endingBefore: "string",
        networkId: "string",
        perPage: 1,
        startingAfter: "string",
        t0: "string",
        timespan: 1,
    });
    export const merakiNetworksSwitchDhcpV4ServersSeenExample = example.then(example => example.items);
    
    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)
    
    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
    	})
    }
    
    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),
        };
    });
    
    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()));
        }
    }
    
    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}
    

    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>
    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]
    func GetSwitchDhcpV4ServersSeen(ctx *Context, args *GetSwitchDhcpV4ServersSeenArgs, opts ...InvokeOption) (*GetSwitchDhcpV4ServersSeenResult, error)
    func GetSwitchDhcpV4ServersSeenOutput(ctx *Context, args *GetSwitchDhcpV4ServersSeenOutputArgs, opts ...InvokeOption) GetSwitchDhcpV4ServersSeenResultOutput

    > 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)
    }
    public static CompletableFuture<GetSwitchDhcpV4ServersSeenResult> getSwitchDhcpV4ServersSeen(GetSwitchDhcpV4ServersSeenArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: meraki:networks/getSwitchDhcpV4ServersSeen:getSwitchDhcpV4ServersSeen
      arguments:
        # arguments dictionary

    The following arguments are supported:

    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.
    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.
    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.
    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.
    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.
    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.

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

    GetSwitchDhcpV4ServersSeenItemDevice

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

    GetSwitchDhcpV4ServersSeenItemDeviceInterface

    Name string
    Interface name.
    Url string
    Url link to interface.
    Name string
    Interface name.
    Url string
    Url link to interface.
    name String
    Interface name.
    url String
    Url link to interface.
    name string
    Interface name.
    url string
    Url link to interface.
    name str
    Interface name.
    url str
    Url link to interface.
    name String
    Interface name.
    url String
    Url link to interface.

    GetSwitchDhcpV4ServersSeenItemIpv4

    Address string
    IPv4 address of the server.
    Gateway string
    IPv4 gateway address of the server.
    Subnet string
    Subnet of the server.
    Address string
    IPv4 address of the server.
    Gateway string
    IPv4 gateway address of the server.
    Subnet string
    Subnet of the server.
    address String
    IPv4 address of the server.
    gateway String
    IPv4 gateway address of the server.
    subnet String
    Subnet of the server.
    address string
    IPv4 address of the server.
    gateway string
    IPv4 gateway address of the server.
    subnet string
    Subnet of the server.
    address str
    IPv4 address of the server.
    gateway str
    IPv4 gateway address of the server.
    subnet str
    Subnet of the server.
    address String
    IPv4 address of the server.
    gateway String
    IPv4 gateway address of the server.
    subnet String
    Subnet of the server.

    GetSwitchDhcpV4ServersSeenItemLastAck

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

    GetSwitchDhcpV4ServersSeenItemLastAckIpv4

    Address string
    IPv4 address of the last ack.
    Address string
    IPv4 address of the last ack.
    address String
    IPv4 address of the last ack.
    address string
    IPv4 address of the last ack.
    address str
    IPv4 address of the last ack.
    address String
    IPv4 address of the last ack.

    GetSwitchDhcpV4ServersSeenItemLastPacket

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

    GetSwitchDhcpV4ServersSeenItemLastPacketDestination

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

    GetSwitchDhcpV4ServersSeenItemLastPacketDestinationIpv4

    Address string
    Destination ipv4 address of the packet.
    Address string
    Destination ipv4 address of the packet.
    address String
    Destination ipv4 address of the packet.
    address string
    Destination ipv4 address of the packet.
    address str
    Destination ipv4 address of the packet.
    address String
    Destination ipv4 address of the packet.

    GetSwitchDhcpV4ServersSeenItemLastPacketEthernet

    Type string
    Ethernet type of the packet.
    Type string
    Ethernet type of the packet.
    type String
    Ethernet type of the packet.
    type string
    Ethernet type of the packet.
    type str
    Ethernet type of the packet.
    type String
    Ethernet type of the packet.

    GetSwitchDhcpV4ServersSeenItemLastPacketFields

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

    GetSwitchDhcpV4ServersSeenItemLastPacketFieldsOption

    Name string
    Option name.
    Value string
    Option value.
    Name string
    Option name.
    Value string
    Option value.
    name String
    Option name.
    value String
    Option value.
    name string
    Option name.
    value string
    Option value.
    name str
    Option name.
    value str
    Option value.
    name String
    Option name.
    value String
    Option value.

    GetSwitchDhcpV4ServersSeenItemLastPacketIp

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

    GetSwitchDhcpV4ServersSeenItemLastPacketIpDscp

    Ecn int
    ECN number of the packet.
    Tag int
    DSCP tag number of the packet.
    Ecn int
    ECN number of the packet.
    Tag int
    DSCP tag number of the packet.
    ecn Integer
    ECN number of the packet.
    tag Integer
    DSCP tag number of the packet.
    ecn number
    ECN number of the packet.
    tag number
    DSCP tag number of the packet.
    ecn int
    ECN number of the packet.
    tag int
    DSCP tag number of the packet.
    ecn Number
    ECN number of the packet.
    tag Number
    DSCP tag number of the packet.

    GetSwitchDhcpV4ServersSeenItemLastPacketSource

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

    GetSwitchDhcpV4ServersSeenItemLastPacketSourceIpv4

    Address string
    Source ipv4 address of the packet.
    Address string
    Source ipv4 address of the packet.
    address String
    Source ipv4 address of the packet.
    address string
    Source ipv4 address of the packet.
    address str
    Source ipv4 address of the packet.
    address String
    Source ipv4 address of the packet.

    GetSwitchDhcpV4ServersSeenItemLastPacketUdp

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

    GetSwitchDhcpV4ServersSeenItemSeenBy

    Name string
    Device name.
    Serial string
    Device serial.
    Url string
    Url link to device.
    Name string
    Device name.
    Serial string
    Device serial.
    Url string
    Url link to device.
    name String
    Device name.
    serial String
    Device serial.
    url String
    Url link to device.
    name string
    Device name.
    serial string
    Device serial.
    url string
    Url link to device.
    name str
    Device name.
    serial str
    Device serial.
    url str
    Url link to device.
    name String
    Device name.
    serial String
    Device serial.
    url 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.
    meraki logo
    Cisco Meraki v0.2.4 published on Friday, Jun 14, 2024 by Pulumi