d55db757db
1. std.create_vnf for VNF creation. 2. std.create_vnfd for VNFD creation. 3. std.delete_vnf for VNF deletion. 4. std.delete_vnfd for VNFD deletion. Change-Id: I2c16c771d468db58728218fcf94154796e955ebb Implements: blueprint tacker-workflows
23 lines
383 B
YAML
23 lines
383 B
YAML
---
|
|
version: '2.0'
|
|
|
|
std.create_vnfd:
|
|
type: direct
|
|
|
|
description: |
|
|
Create a VNFD.
|
|
|
|
input:
|
|
- body
|
|
output:
|
|
vnfd_id: <% $.vnfd_id %>
|
|
|
|
tasks:
|
|
create_vnfd:
|
|
description: Request to create a VNFD.
|
|
action: tacker.create_vnfd body=<% $.body %>
|
|
input:
|
|
body: <% $.body %>
|
|
publish:
|
|
vnfd_id: <% task(create_vnfd).result.vnfd.id %>
|