Skip to content

Get Sol Network Operation

telconetworkbuilder_get_sol_network_operation R Documentation

Gets the details of a network operation, including the tasks involved in the network operation and the status of the tasks

Description

Gets the details of a network operation, including the tasks involved in the network operation and the status of the tasks.

A network operation is any operation that is done to your network, such as network instance instantiation or termination.

Usage

telconetworkbuilder_get_sol_network_operation(nsLcmOpOccId)

Arguments

nsLcmOpOccId

[required] The identifier of the network operation.

Value

A list with the following syntax:

list(
  arn = "string",
  error = list(
    detail = "string",
    title = "string"
  ),
  id = "string",
  lcmOperationType = "INSTANTIATE"|"UPDATE"|"TERMINATE",
  metadata = list(
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    instantiateMetadata = list(
      additionalParamsForNs = list(),
      nsdInfoId = "string"
    ),
    lastModified = as.POSIXct(
      "2015-01-01"
    ),
    modifyVnfInfoMetadata = list(
      vnfConfigurableProperties = list(),
      vnfInstanceId = "string"
    ),
    updateNsMetadata = list(
      additionalParamsForNs = list(),
      nsdInfoId = "string"
    )
  ),
  nsInstanceId = "string",
  operationState = "PROCESSING"|"COMPLETED"|"FAILED"|"CANCELLING"|"CANCELLED",
  tags = list(
    "string"
  ),
  tasks = list(
    list(
      taskContext = list(
        "string"
      ),
      taskEndTime = as.POSIXct(
        "2015-01-01"
      ),
      taskErrorDetails = list(
        cause = "string",
        details = "string"
      ),
      taskName = "string",
      taskStartTime = as.POSIXct(
        "2015-01-01"
      ),
      taskStatus = "SCHEDULED"|"STARTED"|"IN_PROGRESS"|"COMPLETED"|"ERROR"|"SKIPPED"|"CANCELLED"
    )
  ),
  updateType = "MODIFY_VNF_INFORMATION"|"UPDATE_NS"
)

Request syntax

svc$get_sol_network_operation(
  nsLcmOpOccId = "string"
)