Skip to main content

sol_function_package_descriptors

Creates, updates, deletes, gets or lists a sol_function_package_descriptors resource.

Overview

Namesol_function_package_descriptors
TypeResource
Idaws.tnb.sol_function_package_descriptors

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
content_typestringIndicates the media type of the resource. (text/plain)
vnfdstring (byte)Contents of the function package descriptor.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_sol_function_package_descriptorselectAccept, vnf_pkg_id, regionGets a function package descriptor in a function package. A function package descriptor is a .yaml file in a function package that uses the TOSCA standard to describe how the network function in the function package should run on your network. 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
AcceptstringIndicates which content types, expressed as MIME types, the client is able to understand.
regionstringAWS region (default: us-east-1)
vnf_pkg_idstringID of the function package.

SELECT examples

Gets a function package descriptor in a function package. A function package descriptor is a .yaml file in a function package that uses the TOSCA standard to describe how the network function in the function package should run on your network. 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.

SELECT
content_type,
vnfd
FROM aws.tnb.sol_function_package_descriptors
WHERE Accept = '{{ Accept }}' -- required
AND vnf_pkg_id = '{{ vnf_pkg_id }}' -- required
AND region = '{{ region }}' -- required
;