Validate Sol Network Package Content
telconetworkbuilder_validate_sol_network_package_content | R Documentation |
Validates network package content¶
Description¶
Validates network package content. This can be used as a dry run before
uploading network package content with
put_sol_network_package_content
.
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_validate_sol_network_package_content(contentType,
file, nsdInfoId)
Arguments¶
contentType |
Network package content type. |
file |
[required] Network package file. |
nsdInfoId |
[required] Network service descriptor file. |
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$validate_sol_network_package_content(
contentType = "application/zip",
file = raw,
nsdInfoId = "string"
)