Skip to content

Create Sol Network Package

telconetworkbuilder_create_sol_network_package R Documentation

Creates a network package

Description

Creates 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. For more information, see Network instances in the Amazon Web Services Telco Network Builder User Guide.

A network package consists of a network service descriptor (NSD) file (required) and any additional files (optional), such as scripts specific to your needs. For example, if you have multiple function packages in your network package, you can use the NSD to define which network functions should run in certain VPCs, subnets, or EKS clusters.

This request creates an empty network package container with an ID. Once you create a network package, you can upload the network package content using put_sol_network_package_content.

Usage

telconetworkbuilder_create_sol_network_package(tags)

Arguments

tags

A tag is a label that you assign to an Amazon Web Services resource. Each tag consists of a key and an optional value. You can use tags to search and filter your resources or track your Amazon Web Services costs.

Value

A list with the following syntax:

list(
  arn = "string",
  id = "string",
  nsdOnboardingState = "CREATED"|"ONBOARDED"|"ERROR",
  nsdOperationalState = "ENABLED"|"DISABLED",
  nsdUsageState = "IN_USE"|"NOT_IN_USE",
  tags = list(
    "string"
  )
)

Request syntax

svc$create_sol_network_package(
  tags = list(
    "string"
  )
)