Skip to content

List Sol Function Packages

telconetworkbuilder_list_sol_function_packages R Documentation

Lists information about function packages

Description

Lists information about function packages.

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_list_sol_function_packages(maxResults, nextToken)

Arguments

maxResults

The maximum number of results to include in the response.

nextToken

The token for the next page of results.

Value

A list with the following syntax:

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

Request syntax

svc$list_sol_function_packages(
  maxResults = 123,
  nextToken = "string"
)