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

meraki.devices.LiveToolsArpTable

Explore with Pulumi AI

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.devices.LiveToolsArpTable;
import com.pulumi.meraki.devices.LiveToolsArpTableArgs;
import com.pulumi.meraki.devices.inputs.LiveToolsArpTableCallbackArgs;
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) {
        var example = new LiveToolsArpTable("example", LiveToolsArpTableArgs.builder()
            .callback(LiveToolsArpTableCallbackArgs.builder()
                .http_server(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .payload_template(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .shared_secret("secret")
                .url("https://webhook.site/28efa24e-f830-4d9f-a12b-fbb9e5035031")
                .build())
            .serial("string")
            .build());

        ctx.export("merakiDevicesLiveToolsArpTableExample", example);
    }
}
Copy
resources:
  example:
    type: meraki:devices:LiveToolsArpTable
    properties:
      callback:
        http_server:
          id: aHR0cHM6Ly93d3cuZXhhbXBsZS5jb20vd2ViaG9va3M=
        payload_template:
          id: wpt_2100
        shared_secret: secret
        url: https://webhook.site/28efa24e-f830-4d9f-a12b-fbb9e5035031
      serial: string
outputs:
  merakiDevicesLiveToolsArpTableExample: ${example}
Copy

Create LiveToolsArpTable Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new LiveToolsArpTable(name: string, args: LiveToolsArpTableArgs, opts?: CustomResourceOptions);
@overload
def LiveToolsArpTable(resource_name: str,
                      args: LiveToolsArpTableArgs,
                      opts: Optional[ResourceOptions] = None)

@overload
def LiveToolsArpTable(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      serial: Optional[str] = None,
                      arp_table_id: Optional[str] = None,
                      callback: Optional[LiveToolsArpTableCallbackArgs] = None)
func NewLiveToolsArpTable(ctx *Context, name string, args LiveToolsArpTableArgs, opts ...ResourceOption) (*LiveToolsArpTable, error)
public LiveToolsArpTable(string name, LiveToolsArpTableArgs args, CustomResourceOptions? opts = null)
public LiveToolsArpTable(String name, LiveToolsArpTableArgs args)
public LiveToolsArpTable(String name, LiveToolsArpTableArgs args, CustomResourceOptions options)
type: meraki:devices:LiveToolsArpTable
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. LiveToolsArpTableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. LiveToolsArpTableArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. LiveToolsArpTableArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. LiveToolsArpTableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. LiveToolsArpTableArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var liveToolsArpTableResource = new Meraki.Devices.LiveToolsArpTable("liveToolsArpTableResource", new()
{
    Serial = "string",
    ArpTableId = "string",
    Callback = new Meraki.Devices.Inputs.LiveToolsArpTableCallbackArgs
    {
        HttpServer = new Meraki.Devices.Inputs.LiveToolsArpTableCallbackHttpServerArgs
        {
            Id = "string",
        },
        PayloadTemplate = new Meraki.Devices.Inputs.LiveToolsArpTableCallbackPayloadTemplateArgs
        {
            Id = "string",
        },
        SharedSecret = "string",
        Url = "string",
    },
});
Copy
example, err := devices.NewLiveToolsArpTable(ctx, "liveToolsArpTableResource", &devices.LiveToolsArpTableArgs{
	Serial:     pulumi.String("string"),
	ArpTableId: pulumi.String("string"),
	Callback: &devices.LiveToolsArpTableCallbackArgs{
		HttpServer: &devices.LiveToolsArpTableCallbackHttpServerArgs{
			Id: pulumi.String("string"),
		},
		PayloadTemplate: &devices.LiveToolsArpTableCallbackPayloadTemplateArgs{
			Id: pulumi.String("string"),
		},
		SharedSecret: pulumi.String("string"),
		Url:          pulumi.String("string"),
	},
})
Copy
var liveToolsArpTableResource = new LiveToolsArpTable("liveToolsArpTableResource", LiveToolsArpTableArgs.builder()
    .serial("string")
    .arpTableId("string")
    .callback(LiveToolsArpTableCallbackArgs.builder()
        .httpServer(LiveToolsArpTableCallbackHttpServerArgs.builder()
            .id("string")
            .build())
        .payloadTemplate(LiveToolsArpTableCallbackPayloadTemplateArgs.builder()
            .id("string")
            .build())
        .sharedSecret("string")
        .url("string")
        .build())
    .build());
Copy
live_tools_arp_table_resource = meraki.devices.LiveToolsArpTable("liveToolsArpTableResource",
    serial="string",
    arp_table_id="string",
    callback={
        "http_server": {
            "id": "string",
        },
        "payload_template": {
            "id": "string",
        },
        "shared_secret": "string",
        "url": "string",
    })
Copy
const liveToolsArpTableResource = new meraki.devices.LiveToolsArpTable("liveToolsArpTableResource", {
    serial: "string",
    arpTableId: "string",
    callback: {
        httpServer: {
            id: "string",
        },
        payloadTemplate: {
            id: "string",
        },
        sharedSecret: "string",
        url: "string",
    },
});
Copy
type: meraki:devices:LiveToolsArpTable
properties:
    arpTableId: string
    callback:
        httpServer:
            id: string
        payloadTemplate:
            id: string
        sharedSecret: string
        url: string
    serial: string
Copy

LiveToolsArpTable Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The LiveToolsArpTable resource accepts the following input properties:

Serial This property is required. string
serial path parameter.
ArpTableId string
Id of the ARP table request. Used to check the status of the request.
Callback LiveToolsArpTableCallback
Details for the callback. Please include either an httpServerId OR url and sharedSecret
Serial This property is required. string
serial path parameter.
ArpTableId string
Id of the ARP table request. Used to check the status of the request.
Callback LiveToolsArpTableCallbackArgs
Details for the callback. Please include either an httpServerId OR url and sharedSecret
serial This property is required. String
serial path parameter.
arpTableId String
Id of the ARP table request. Used to check the status of the request.
callback LiveToolsArpTableCallback
Details for the callback. Please include either an httpServerId OR url and sharedSecret
serial This property is required. string
serial path parameter.
arpTableId string
Id of the ARP table request. Used to check the status of the request.
callback LiveToolsArpTableCallback
Details for the callback. Please include either an httpServerId OR url and sharedSecret
serial This property is required. str
serial path parameter.
arp_table_id str
Id of the ARP table request. Used to check the status of the request.
callback LiveToolsArpTableCallbackArgs
Details for the callback. Please include either an httpServerId OR url and sharedSecret
serial This property is required. String
serial path parameter.
arpTableId String
Id of the ARP table request. Used to check the status of the request.
callback Property Map
Details for the callback. Please include either an httpServerId OR url and sharedSecret

Outputs

All input properties are implicitly available as output properties. Additionally, the LiveToolsArpTable resource produces the following output properties:

Entries List<LiveToolsArpTableEntry>
The ARP table entries
Error string
An error message for a failed execution
Id string
The provider-assigned unique ID for this managed resource.
Request LiveToolsArpTableRequest
ARP table request parameters
Status string
Status of the ARP table request.
Url string
GET this url to check the status of your ARP table request.
Entries []LiveToolsArpTableEntry
The ARP table entries
Error string
An error message for a failed execution
Id string
The provider-assigned unique ID for this managed resource.
Request LiveToolsArpTableRequest
ARP table request parameters
Status string
Status of the ARP table request.
Url string
GET this url to check the status of your ARP table request.
entries List<LiveToolsArpTableEntry>
The ARP table entries
error String
An error message for a failed execution
id String
The provider-assigned unique ID for this managed resource.
request LiveToolsArpTableRequest
ARP table request parameters
status String
Status of the ARP table request.
url String
GET this url to check the status of your ARP table request.
entries LiveToolsArpTableEntry[]
The ARP table entries
error string
An error message for a failed execution
id string
The provider-assigned unique ID for this managed resource.
request LiveToolsArpTableRequest
ARP table request parameters
status string
Status of the ARP table request.
url string
GET this url to check the status of your ARP table request.
entries Sequence[LiveToolsArpTableEntry]
The ARP table entries
error str
An error message for a failed execution
id str
The provider-assigned unique ID for this managed resource.
request LiveToolsArpTableRequest
ARP table request parameters
status str
Status of the ARP table request.
url str
GET this url to check the status of your ARP table request.
entries List<Property Map>
The ARP table entries
error String
An error message for a failed execution
id String
The provider-assigned unique ID for this managed resource.
request Property Map
ARP table request parameters
status String
Status of the ARP table request.
url String
GET this url to check the status of your ARP table request.

Look up Existing LiveToolsArpTable Resource

Get an existing LiveToolsArpTable resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: LiveToolsArpTableState, opts?: CustomResourceOptions): LiveToolsArpTable
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arp_table_id: Optional[str] = None,
        callback: Optional[LiveToolsArpTableCallbackArgs] = None,
        entries: Optional[Sequence[LiveToolsArpTableEntryArgs]] = None,
        error: Optional[str] = None,
        request: Optional[LiveToolsArpTableRequestArgs] = None,
        serial: Optional[str] = None,
        status: Optional[str] = None,
        url: Optional[str] = None) -> LiveToolsArpTable
func GetLiveToolsArpTable(ctx *Context, name string, id IDInput, state *LiveToolsArpTableState, opts ...ResourceOption) (*LiveToolsArpTable, error)
public static LiveToolsArpTable Get(string name, Input<string> id, LiveToolsArpTableState? state, CustomResourceOptions? opts = null)
public static LiveToolsArpTable get(String name, Output<String> id, LiveToolsArpTableState state, CustomResourceOptions options)
resources:  _:    type: meraki:devices:LiveToolsArpTable    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ArpTableId string
Id of the ARP table request. Used to check the status of the request.
Callback LiveToolsArpTableCallback
Details for the callback. Please include either an httpServerId OR url and sharedSecret
Entries List<LiveToolsArpTableEntry>
The ARP table entries
Error string
An error message for a failed execution
Request LiveToolsArpTableRequest
ARP table request parameters
Serial string
serial path parameter.
Status string
Status of the ARP table request.
Url string
GET this url to check the status of your ARP table request.
ArpTableId string
Id of the ARP table request. Used to check the status of the request.
Callback LiveToolsArpTableCallbackArgs
Details for the callback. Please include either an httpServerId OR url and sharedSecret
Entries []LiveToolsArpTableEntryArgs
The ARP table entries
Error string
An error message for a failed execution
Request LiveToolsArpTableRequestArgs
ARP table request parameters
Serial string
serial path parameter.
Status string
Status of the ARP table request.
Url string
GET this url to check the status of your ARP table request.
arpTableId String
Id of the ARP table request. Used to check the status of the request.
callback LiveToolsArpTableCallback
Details for the callback. Please include either an httpServerId OR url and sharedSecret
entries List<LiveToolsArpTableEntry>
The ARP table entries
error String
An error message for a failed execution
request LiveToolsArpTableRequest
ARP table request parameters
serial String
serial path parameter.
status String
Status of the ARP table request.
url String
GET this url to check the status of your ARP table request.
arpTableId string
Id of the ARP table request. Used to check the status of the request.
callback LiveToolsArpTableCallback
Details for the callback. Please include either an httpServerId OR url and sharedSecret
entries LiveToolsArpTableEntry[]
The ARP table entries
error string
An error message for a failed execution
request LiveToolsArpTableRequest
ARP table request parameters
serial string
serial path parameter.
status string
Status of the ARP table request.
url string
GET this url to check the status of your ARP table request.
arp_table_id str
Id of the ARP table request. Used to check the status of the request.
callback LiveToolsArpTableCallbackArgs
Details for the callback. Please include either an httpServerId OR url and sharedSecret
entries Sequence[LiveToolsArpTableEntryArgs]
The ARP table entries
error str
An error message for a failed execution
request LiveToolsArpTableRequestArgs
ARP table request parameters
serial str
serial path parameter.
status str
Status of the ARP table request.
url str
GET this url to check the status of your ARP table request.
arpTableId String
Id of the ARP table request. Used to check the status of the request.
callback Property Map
Details for the callback. Please include either an httpServerId OR url and sharedSecret
entries List<Property Map>
The ARP table entries
error String
An error message for a failed execution
request Property Map
ARP table request parameters
serial String
serial path parameter.
status String
Status of the ARP table request.
url String
GET this url to check the status of your ARP table request.

Supporting Types

LiveToolsArpTableCallback
, LiveToolsArpTableCallbackArgs

HttpServer LiveToolsArpTableCallbackHttpServer
The webhook receiver used for the callback webhook.
PayloadTemplate LiveToolsArpTableCallbackPayloadTemplate
The payload template of the webhook used for the callback
SharedSecret string
A shared secret that will be included in the requests sent to the callback URL. It can be used to verify that the request was sent by Meraki. If using this field, please also specify an url.
Url string
The callback URL for the webhook target. If using this field, please also specify a sharedSecret.
HttpServer LiveToolsArpTableCallbackHttpServer
The webhook receiver used for the callback webhook.
PayloadTemplate LiveToolsArpTableCallbackPayloadTemplate
The payload template of the webhook used for the callback
SharedSecret string
A shared secret that will be included in the requests sent to the callback URL. It can be used to verify that the request was sent by Meraki. If using this field, please also specify an url.
Url string
The callback URL for the webhook target. If using this field, please also specify a sharedSecret.
httpServer LiveToolsArpTableCallbackHttpServer
The webhook receiver used for the callback webhook.
payloadTemplate LiveToolsArpTableCallbackPayloadTemplate
The payload template of the webhook used for the callback
sharedSecret String
A shared secret that will be included in the requests sent to the callback URL. It can be used to verify that the request was sent by Meraki. If using this field, please also specify an url.
url String
The callback URL for the webhook target. If using this field, please also specify a sharedSecret.
httpServer LiveToolsArpTableCallbackHttpServer
The webhook receiver used for the callback webhook.
payloadTemplate LiveToolsArpTableCallbackPayloadTemplate
The payload template of the webhook used for the callback
sharedSecret string
A shared secret that will be included in the requests sent to the callback URL. It can be used to verify that the request was sent by Meraki. If using this field, please also specify an url.
url string
The callback URL for the webhook target. If using this field, please also specify a sharedSecret.
http_server LiveToolsArpTableCallbackHttpServer
The webhook receiver used for the callback webhook.
payload_template LiveToolsArpTableCallbackPayloadTemplate
The payload template of the webhook used for the callback
shared_secret str
A shared secret that will be included in the requests sent to the callback URL. It can be used to verify that the request was sent by Meraki. If using this field, please also specify an url.
url str
The callback URL for the webhook target. If using this field, please also specify a sharedSecret.
httpServer Property Map
The webhook receiver used for the callback webhook.
payloadTemplate Property Map
The payload template of the webhook used for the callback
sharedSecret String
A shared secret that will be included in the requests sent to the callback URL. It can be used to verify that the request was sent by Meraki. If using this field, please also specify an url.
url String
The callback URL for the webhook target. If using this field, please also specify a sharedSecret.

LiveToolsArpTableCallbackHttpServer
, LiveToolsArpTableCallbackHttpServerArgs

Id string
The webhook receiver ID that will receive information. If specifying this, please leave the url and sharedSecret fields blank.
Id string
The webhook receiver ID that will receive information. If specifying this, please leave the url and sharedSecret fields blank.
id String
The webhook receiver ID that will receive information. If specifying this, please leave the url and sharedSecret fields blank.
id string
The webhook receiver ID that will receive information. If specifying this, please leave the url and sharedSecret fields blank.
id str
The webhook receiver ID that will receive information. If specifying this, please leave the url and sharedSecret fields blank.
id String
The webhook receiver ID that will receive information. If specifying this, please leave the url and sharedSecret fields blank.

LiveToolsArpTableCallbackPayloadTemplate
, LiveToolsArpTableCallbackPayloadTemplateArgs

Id string
The ID of the payload template. Defaults to 'wpt_00005' for the Callback (included) template.
Id string
The ID of the payload template. Defaults to 'wpt_00005' for the Callback (included) template.
id String
The ID of the payload template. Defaults to 'wpt_00005' for the Callback (included) template.
id string
The ID of the payload template. Defaults to 'wpt_00005' for the Callback (included) template.
id str
The ID of the payload template. Defaults to 'wpt_00005' for the Callback (included) template.
id String
The ID of the payload template. Defaults to 'wpt_00005' for the Callback (included) template.

LiveToolsArpTableEntry
, LiveToolsArpTableEntryArgs

Ip string
The IP address of the ARP table entry
LastUpdatedAt string
Time of the last update of the ARP table entry
Mac string
The MAC address of the ARP table entry
VlanId int
The VLAN ID of the ARP table entry
Ip string
The IP address of the ARP table entry
LastUpdatedAt string
Time of the last update of the ARP table entry
Mac string
The MAC address of the ARP table entry
VlanId int
The VLAN ID of the ARP table entry
ip String
The IP address of the ARP table entry
lastUpdatedAt String
Time of the last update of the ARP table entry
mac String
The MAC address of the ARP table entry
vlanId Integer
The VLAN ID of the ARP table entry
ip string
The IP address of the ARP table entry
lastUpdatedAt string
Time of the last update of the ARP table entry
mac string
The MAC address of the ARP table entry
vlanId number
The VLAN ID of the ARP table entry
ip str
The IP address of the ARP table entry
last_updated_at str
Time of the last update of the ARP table entry
mac str
The MAC address of the ARP table entry
vlan_id int
The VLAN ID of the ARP table entry
ip String
The IP address of the ARP table entry
lastUpdatedAt String
Time of the last update of the ARP table entry
mac String
The MAC address of the ARP table entry
vlanId Number
The VLAN ID of the ARP table entry

LiveToolsArpTableRequest
, LiveToolsArpTableRequestArgs

Serial string
Device serial number
Serial string
Device serial number
serial String
Device serial number
serial string
Device serial number
serial str
Device serial number
serial String
Device serial number

Import

$ pulumi import meraki:devices/liveToolsArpTable:LiveToolsArpTable example "arp_table_id,serial"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

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