Update Core Network
networkmanager_update_core_network | R Documentation |
Updates the description of a core network¶
Description¶
Updates the description of a core network.
Usage¶
networkmanager_update_core_network(CoreNetworkId, Description)
Arguments¶
CoreNetworkId |
[required] The ID of a core network. |
Description |
The description of the update. |
Value¶
A list with the following syntax:
list(
CoreNetwork = list(
GlobalNetworkId = "string",
CoreNetworkId = "string",
CoreNetworkArn = "string",
Description = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
State = "CREATING"|"UPDATING"|"AVAILABLE"|"DELETING",
Segments = list(
list(
Name = "string",
EdgeLocations = list(
"string"
),
SharedSegments = list(
"string"
)
)
),
NetworkFunctionGroups = list(
list(
Name = "string",
EdgeLocations = list(
"string"
),
Segments = list(
SendVia = list(
"string"
),
SendTo = list(
"string"
)
)
)
),
Edges = list(
list(
EdgeLocation = "string",
Asn = 123,
InsideCidrBlocks = list(
"string"
)
)
),
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
)
Request syntax¶
svc$update_core_network(
CoreNetworkId = "string",
Description = "string"
)