Skip to content

Associate Link

networkmanager_associate_link R Documentation

Description

Associates a link to a device. A device can be associated to multiple links and a link can be associated to multiple devices. The device and link must be in the same global network and the same site.

Usage

networkmanager_associate_link(GlobalNetworkId, DeviceId, LinkId)

Arguments

GlobalNetworkId

[required] The ID of the global network.

DeviceId

[required] The ID of the device.

LinkId

[required] The ID of the link.

Value

A list with the following syntax:

list(
  LinkAssociation = list(
    GlobalNetworkId = "string",
    DeviceId = "string",
    LinkId = "string",
    LinkAssociationState = "PENDING"|"AVAILABLE"|"DELETING"|"DELETED"
  )
)

Request syntax

svc$associate_link(
  GlobalNetworkId = "string",
  DeviceId = "string",
  LinkId = "string"
)