sol_function_package_descriptors
Creates, updates, deletes, gets or lists a sol_function_package_descriptors resource.
Overview
| Name | sol_function_package_descriptors |
| Type | Resource |
| Id | aws.tnb.sol_function_package_descriptors |
Fields
The following fields are returned by SELECT queries:
- get_sol_function_package_descriptor
| Name | Datatype | Description |
|---|---|---|
content_type | string | Indicates the media type of the resource. (text/plain) |
vnfd | string (byte) | Contents of the function package descriptor. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_sol_function_package_descriptor | select | Accept, vnf_pkg_id, region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
Accept | string | Indicates which content types, expressed as MIME types, the client is able to understand. |
region | string | AWS region (default: us-east-1) |
vnf_pkg_id | string | ID of the function package. |
SELECT examples
- get_sol_function_package_descriptor
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
;