Skip to content

Get Sol Function Instance

telconetworkbuilder_get_sol_function_instance R Documentation

Gets the details of a network function instance, including the instantation state and metadata from the function package descriptor in the network function package

Description

Gets the details of a network function instance, including the instantation state and metadata from the function package descriptor in the network function package.

A network function instance is a function in a function package .

Usage

telconetworkbuilder_get_sol_function_instance(vnfInstanceId)

Arguments

vnfInstanceId

[required] ID of the network function.

Value

A list with the following syntax:

list(
  arn = "string",
  id = "string",
  instantiatedVnfInfo = list(
    vnfState = "STARTED"|"STOPPED",
    vnfcResourceInfo = list(
      list(
        metadata = list(
          cluster = "string",
          helmChart = "string",
          nodeGroup = "string"
        )
      )
    )
  ),
  instantiationState = "INSTANTIATED"|"NOT_INSTANTIATED",
  metadata = list(
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    lastModified = as.POSIXct(
      "2015-01-01"
    )
  ),
  nsInstanceId = "string",
  tags = list(
    "string"
  ),
  vnfPkgId = "string",
  vnfProductName = "string",
  vnfProvider = "string",
  vnfdId = "string",
  vnfdVersion = "string"
)

Request syntax

svc$get_sol_function_instance(
  vnfInstanceId = "string"
)