Disassociate Link
networkmanager_disassociate_link | R Documentation |
Disassociates an existing device from a link¶
Description¶
Disassociates an existing device from a link. You must first disassociate any customer gateways that are associated with the link.
Usage¶
networkmanager_disassociate_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$disassociate_link(
GlobalNetworkId = "string",
DeviceId = "string",
LinkId = "string"
)