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¶
Arguments¶
maxResultsThe maximum number of results to include in the response.
nextTokenThe token for the next page of results.
nsInstanceIdNetwork 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"
)