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

meraki.networks.getSwitchDhcpServerPolicyArpInspectionWarningsByDevice

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.getSwitchDhcpServerPolicyArpInspectionWarningsByDevice({
        endingBefore: "string",
        networkId: "string",
        perPage: 1,
        startingAfter: "string",
    });
    export const merakiNetworksSwitchDhcpServerPolicyArpInspectionWarningsByDeviceExample = example.then(example => example.items);
    
    import pulumi
    import pulumi_meraki as meraki
    
    example = meraki.networks.get_switch_dhcp_server_policy_arp_inspection_warnings_by_device(ending_before="string",
        network_id="string",
        per_page=1,
        starting_after="string")
    pulumi.export("merakiNetworksSwitchDhcpServerPolicyArpInspectionWarningsByDeviceExample", 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.GetSwitchDhcpServerPolicyArpInspectionWarningsByDevice(ctx, &networks.GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceArgs{
    			EndingBefore:  pulumi.StringRef("string"),
    			NetworkId:     "string",
    			PerPage:       pulumi.IntRef(1),
    			StartingAfter: pulumi.StringRef("string"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("merakiNetworksSwitchDhcpServerPolicyArpInspectionWarningsByDeviceExample", 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.GetSwitchDhcpServerPolicyArpInspectionWarningsByDevice.Invoke(new()
        {
            EndingBefore = "string",
            NetworkId = "string",
            PerPage = 1,
            StartingAfter = "string",
        });
    
        return new Dictionary<string, object?>
        {
            ["merakiNetworksSwitchDhcpServerPolicyArpInspectionWarningsByDeviceExample"] = example.Apply(getSwitchDhcpServerPolicyArpInspectionWarningsByDeviceResult => getSwitchDhcpServerPolicyArpInspectionWarningsByDeviceResult.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.GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceArgs;
    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.getSwitchDhcpServerPolicyArpInspectionWarningsByDevice(GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceArgs.builder()
                .endingBefore("string")
                .networkId("string")
                .perPage(1)
                .startingAfter("string")
                .build());
    
            ctx.export("merakiNetworksSwitchDhcpServerPolicyArpInspectionWarningsByDeviceExample", example.applyValue(getSwitchDhcpServerPolicyArpInspectionWarningsByDeviceResult -> getSwitchDhcpServerPolicyArpInspectionWarningsByDeviceResult.items()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: meraki:networks:getSwitchDhcpServerPolicyArpInspectionWarningsByDevice
          Arguments:
            endingBefore: string
            networkId: string
            perPage: 1
            startingAfter: string
    outputs:
      merakiNetworksSwitchDhcpServerPolicyArpInspectionWarningsByDeviceExample: ${example.items}
    

    Using getSwitchDhcpServerPolicyArpInspectionWarningsByDevice

    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 getSwitchDhcpServerPolicyArpInspectionWarningsByDevice(args: GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceArgs, opts?: InvokeOptions): Promise<GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceResult>
    function getSwitchDhcpServerPolicyArpInspectionWarningsByDeviceOutput(args: GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceOutputArgs, opts?: InvokeOptions): Output<GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceResult>
    def get_switch_dhcp_server_policy_arp_inspection_warnings_by_device(ending_before: Optional[str] = None,
                                                                        network_id: Optional[str] = None,
                                                                        per_page: Optional[int] = None,
                                                                        starting_after: Optional[str] = None,
                                                                        opts: Optional[InvokeOptions] = None) -> GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceResult
    def get_switch_dhcp_server_policy_arp_inspection_warnings_by_device_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,
                                                                        opts: Optional[InvokeOptions] = None) -> Output[GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceResult]
    func GetSwitchDhcpServerPolicyArpInspectionWarningsByDevice(ctx *Context, args *GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceArgs, opts ...InvokeOption) (*GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceResult, error)
    func GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceOutput(ctx *Context, args *GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceOutputArgs, opts ...InvokeOption) GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceResultOutput

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

    public static class GetSwitchDhcpServerPolicyArpInspectionWarningsByDevice 
    {
        public static Task<GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceResult> InvokeAsync(GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceArgs args, InvokeOptions? opts = null)
        public static Output<GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceResult> Invoke(GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceResult> getSwitchDhcpServerPolicyArpInspectionWarningsByDevice(GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: meraki:networks/getSwitchDhcpServerPolicyArpInspectionWarningsByDevice:getSwitchDhcpServerPolicyArpInspectionWarningsByDevice
      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.
    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.
    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.
    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.
    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.
    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.

    getSwitchDhcpServerPolicyArpInspectionWarningsByDevice Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Items List<GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceItem>
    Array of ResponseSwitchGetNetworkSwitchDhcpServerPolicyArpInspectionWarningsByDevice
    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.
    Id string
    The provider-assigned unique ID for this managed resource.
    Items []GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceItem
    Array of ResponseSwitchGetNetworkSwitchDhcpServerPolicyArpInspectionWarningsByDevice
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceItem>
    Array of ResponseSwitchGetNetworkSwitchDhcpServerPolicyArpInspectionWarningsByDevice
    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.
    id string
    The provider-assigned unique ID for this managed resource.
    items GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceItem[]
    Array of ResponseSwitchGetNetworkSwitchDhcpServerPolicyArpInspectionWarningsByDevice
    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.
    id str
    The provider-assigned unique ID for this managed resource.
    items Sequence[GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceItem]
    Array of ResponseSwitchGetNetworkSwitchDhcpServerPolicyArpInspectionWarningsByDevice
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    items List<Property Map>
    Array of ResponseSwitchGetNetworkSwitchDhcpServerPolicyArpInspectionWarningsByDevice
    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.

    Supporting Types

    GetSwitchDhcpServerPolicyArpInspectionWarningsByDeviceItem

    HasTrustedPort bool
    Whether this switch has a trusted DAI port. Always false if supportsInspection is false.
    Name string
    Switch name.
    Serial string
    Switch serial.
    SupportsInspection bool
    Whether this switch supports Dynamic ARP Inspection.
    Url string
    Url link to switch.
    HasTrustedPort bool
    Whether this switch has a trusted DAI port. Always false if supportsInspection is false.
    Name string
    Switch name.
    Serial string
    Switch serial.
    SupportsInspection bool
    Whether this switch supports Dynamic ARP Inspection.
    Url string
    Url link to switch.
    hasTrustedPort Boolean
    Whether this switch has a trusted DAI port. Always false if supportsInspection is false.
    name String
    Switch name.
    serial String
    Switch serial.
    supportsInspection Boolean
    Whether this switch supports Dynamic ARP Inspection.
    url String
    Url link to switch.
    hasTrustedPort boolean
    Whether this switch has a trusted DAI port. Always false if supportsInspection is false.
    name string
    Switch name.
    serial string
    Switch serial.
    supportsInspection boolean
    Whether this switch supports Dynamic ARP Inspection.
    url string
    Url link to switch.
    has_trusted_port bool
    Whether this switch has a trusted DAI port. Always false if supportsInspection is false.
    name str
    Switch name.
    serial str
    Switch serial.
    supports_inspection bool
    Whether this switch supports Dynamic ARP Inspection.
    url str
    Url link to switch.
    hasTrustedPort Boolean
    Whether this switch has a trusted DAI port. Always false if supportsInspection is false.
    name String
    Switch name.
    serial String
    Switch serial.
    supportsInspection Boolean
    Whether this switch supports Dynamic ARP Inspection.
    url String
    Url link to switch.

    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