Skip to content

List Sol Network Packages

telconetworkbuilder_list_sol_network_packages R Documentation

Lists network packages

Description

Lists network packages.

A network package is a .zip file in CSAR (Cloud Service Archive) format defines the function packages you want to deploy and the Amazon Web Services infrastructure you want to deploy them on.

Usage

telconetworkbuilder_list_sol_network_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(
  networkPackages = list(
    list(
      arn = "string",
      id = "string",
      metadata = list(
        createdAt = as.POSIXct(
          "2015-01-01"
        ),
        lastModified = as.POSIXct(
          "2015-01-01"
        )
      ),
      nsdDesigner = "string",
      nsdId = "string",
      nsdInvariantId = "string",
      nsdName = "string",
      nsdOnboardingState = "CREATED"|"ONBOARDED"|"ERROR",
      nsdOperationalState = "ENABLED"|"DISABLED",
      nsdUsageState = "IN_USE"|"NOT_IN_USE",
      nsdVersion = "string",
      vnfPkgIds = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

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