Skip to content

Put Sol Function Package Content

telconetworkbuilder_put_sol_function_package_content R Documentation

Uploads the contents of a function package

Description

Uploads the contents of a function package.

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_put_sol_function_package_content(contentType, file,
  vnfPkgId)

Arguments

contentType

Function package content type.

file

[required] Function package file.

vnfPkgId

[required] Function package ID.

Value

A list with the following syntax:

list(
  id = "string",
  metadata = list(
    vnfd = list(
      overrides = list(
        list(
          defaultValue = "string",
          name = "string"
        )
      )
    )
  ),
  vnfProductName = "string",
  vnfProvider = "string",
  vnfdId = "string",
  vnfdVersion = "string"
)

Request syntax

svc$put_sol_function_package_content(
  contentType = "application/zip",
  file = raw,
  vnfPkgId = "string"
)