List Sol Network Operations
telconetworkbuilder_list_sol_network_operations | R Documentation |
Lists details for a network operation, including when the operation started and the status of the operation¶
Description¶
Lists details for a network operation, including when the operation started and the status of the operation.
A network operation is any operation that is done to your network, such as network instance instantiation or termination.
Usage¶
telconetworkbuilder_list_sol_network_operations(maxResults, nextToken,
nsInstanceId)
Arguments¶
maxResults |
The maximum number of results to include in the response. |
nextToken |
The token for the next page of results. |
nsInstanceId |
Network instance id filter, to retrieve network operations associated to a network instance. |
Value¶
A list with the following syntax:
list(
networkOperations = list(
list(
arn = "string",
error = list(
detail = "string",
title = "string"
),
id = "string",
lcmOperationType = "INSTANTIATE"|"UPDATE"|"TERMINATE",
metadata = list(
createdAt = as.POSIXct(
"2015-01-01"
),
lastModified = as.POSIXct(
"2015-01-01"
),
nsdInfoId = "string",
vnfInstanceId = "string"
),
nsInstanceId = "string",
operationState = "PROCESSING"|"COMPLETED"|"FAILED"|"CANCELLING"|"CANCELLED",
updateType = "MODIFY_VNF_INFORMATION"|"UPDATE_NS"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_sol_network_operations(
maxResults = 123,
nextToken = "string",
nsInstanceId = "string"
)