Skip to content

Put Sol Network Package Content

telconetworkbuilder_put_sol_network_package_content R Documentation

Uploads the contents of a network package

Description

Uploads the contents of a network package.

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_put_sol_network_package_content(contentType, file,
  nsdInfoId)

Arguments

contentType

Network package content type.

file

[required] Network package file.

nsdInfoId

[required] Network service descriptor info ID.

Value

A list with the following syntax:

list(
  arn = "string",
  id = "string",
  metadata = list(
    nsd = list(
      overrides = list(
        list(
          defaultValue = "string",
          name = "string"
        )
      )
    )
  ),
  nsdId = "string",
  nsdName = "string",
  nsdVersion = "string",
  vnfPkgIds = list(
    "string"
  )
)

Request syntax

svc$put_sol_network_package_content(
  contentType = "application/zip",
  file = raw,
  nsdInfoId = "string"
)