sol_network_package_descriptors
Creates, updates, deletes, gets or lists a sol_network_package_descriptors resource.
Overview
| Name | sol_network_package_descriptors |
| Type | Resource |
| Id | aws.tnb.sol_network_package_descriptors |
Fields
The following fields are returned by SELECT queries:
- get_sol_network_package_descriptor
| Name | Datatype | Description |
|---|---|---|
content_type | string | Indicates the media type of the resource. (text/plain) |
nsd | string (byte) | Contents of the network service descriptor in the network package. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_sol_network_package_descriptor | select | nsd_info_id, region | Gets the content of the network service descriptor. A network service descriptor is a .yaml file in a network package that uses the TOSCA standard to describe the network functions you want to deploy and the Amazon Web Services infrastructure you want to deploy the network functions on. |
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 |
|---|---|---|
nsd_info_id | string | ID of the network service descriptor in the network package. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_sol_network_package_descriptor
Gets the content of the network service descriptor. A network service descriptor is a .yaml file in a network package that uses the TOSCA standard to describe the network functions you want to deploy and the Amazon Web Services infrastructure you want to deploy the network functions on.
SELECT
content_type,
nsd
FROM aws.tnb.sol_network_package_descriptors
WHERE nsd_info_id = '{{ nsd_info_id }}' -- required
AND region = '{{ region }}' -- required
;