Validate Sol Function Package Content
telconetworkbuilder_validate_sol_function_package_content | R Documentation |
Validates function package content¶
Description¶
Validates function package content. This can be used as a dry run before
uploading function package content with
put_sol_function_package_content
.
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_validate_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$validate_sol_function_package_content(
contentType = "application/zip",
file = raw,
vnfPkgId = "string"
)