Get Sol Network Package
telconetworkbuilder_get_sol_network_package | R Documentation |
Gets the details of a network package¶
Description¶
Gets the details 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_get_sol_network_package(nsdInfoId)
Arguments¶
nsdInfoId |
[required] ID of the network service descriptor in the network package. |
Value¶
A list with the following syntax:
list(
arn = "string",
id = "string",
metadata = list(
createdAt = as.POSIXct(
"2015-01-01"
),
lastModified = as.POSIXct(
"2015-01-01"
),
nsd = list(
overrides = list(
list(
defaultValue = "string",
name = "string"
)
)
)
),
nsdId = "string",
nsdName = "string",
nsdOnboardingState = "CREATED"|"ONBOARDED"|"ERROR",
nsdOperationalState = "ENABLED"|"DISABLED",
nsdUsageState = "IN_USE"|"NOT_IN_USE",
nsdVersion = "string",
tags = list(
"string"
),
vnfPkgIds = list(
"string"
)
)
Request syntax¶
svc$get_sol_network_package(
nsdInfoId = "string"
)