Skip to content

Get Sol Function Package

telconetworkbuilder_get_sol_function_package R Documentation

Gets the details of an individual function package, such as the operational state and whether the package is in use

Description

Gets the details of an individual function package, such as the operational state and whether the package is in use.

A function package is a .zip file in CSAR (Cloud Service Archive) format that contains a network function (an ETSI standard telecommunication application) and function package descriptor that uses the TOSCA standard to describe how the network functions should run on your network..

Usage

telconetworkbuilder_get_sol_function_package(vnfPkgId)

Arguments

vnfPkgId

[required] ID of the function package.

Value

A list with the following syntax:

list(
  arn = "string",
  id = "string",
  metadata = list(
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    lastModified = as.POSIXct(
      "2015-01-01"
    ),
    vnfd = list(
      overrides = list(
        list(
          defaultValue = "string",
          name = "string"
        )
      )
    )
  ),
  onboardingState = "CREATED"|"ONBOARDED"|"ERROR",
  operationalState = "ENABLED"|"DISABLED",
  tags = list(
    "string"
  ),
  usageState = "IN_USE"|"NOT_IN_USE",
  vnfProductName = "string",
  vnfProvider = "string",
  vnfdId = "string",
  vnfdVersion = "string"
)

Request syntax

svc$get_sol_function_package(
  vnfPkgId = "string"
)