summaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/resources/openecomp/org/validation/validators/ecompGuideLineValidator/heatPortNetworkNamingConvention/negative/firstVol.yaml
blob: 7e82b2a7e68b52099c296076f4f633a7cc0ce2cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
heat_template_version:  2013-05-23

parameters:
   not_null:
     type: number
     label: not_number


resources:
   volume_expose:
     type: OS::Cinder::Volume
     properties:
       not_null: not_null
outputs:
  not_expose_resource_network_output:
    description: the pcrf_server
    value: { get_resource: volume_expose }
span class="s">Plugin." contact: url: "https://wiki.onap.org/display/DW/Support+for+K8S+%28Kubernetes%29+based+Cloud+regions" license: name: "Apache 2.0" url: "http://www.apache.org/licenses/LICENSE-2.0.html" basePath: "/v1.0" schemes: - "http" paths: /vnf_instances: post: tags: - "Deployment of VNF Containers" summary: "Create Kubernetes based VNFs." description: "Endpoint to create Kubernetes based VNFs." consumes: - "application/json" produces: - "application/json" parameters: - in: "body" name: "body" description: "Create new VNF containers" required: true schema: $ref: "#/definitions/POSTRequest" responses: 200: description: "successful operation" schema: $ref: "#/definitions/POSTResponse" /vnf_instances/: get: tags: - "Deployment of VNF Containers" summary: "List all Kubernetes based VNFs." description: "Endpoint to list all Kubernetes based VNF." produces: - "application/json" responses: 200: description: "successful operation" schema: $ref: "#/definitions/GETSResponse" /vnf_instances/{name}: get: tags: - "Deployment of VNF Containers" summary: "Get details of a Kubernetes based VNFs." description: "Endpoint to get details of a Kubernetes based VNFs." produces: - "application/json" parameters: - name: "name" in: "path" description: "Name used to query" required: true type: "string" responses: 200: description: "successful operation" schema: $ref: "#/definitions/GETResponse" patch: tags: - "Deployment of VNF Containers" summary: "Update a Kubernetes based VNFs." description: "Endp to update a Kubernetes based VNFs." produces: - "application/json" parameters: - name: "name" in: "path" description: "Name used to patch" required: true type: "string" - name: "body" in: "body" description: "Patch an existing Kubernetes based VNFs." required: true schema: $ref: "#/definitions/PATCHRequest" responses: 200: description: "successful operation" schema: $ref: "#/definitions/PATCHResponse" delete: tags: - "Deployment of VNF Containers" summary: "Delete a Kubernetes based VNFs." description: "Endpoint to delete a Kubernetes based VNFs." produces: - "application/json" parameters: - name: "name" in: "path" description: "Name used to delete" required: true type: "string" responses: 200: description: "successful operation" schema: $ref: "#/definitions/DELETEResponse" definitions: POSTRequest: type: "object" properties: cloud_region_id: type: "string" csar_id: type: "string" namespace: type: "string" oof_parameters: items: type: "object" additionalProperties: true example: key1: value1 key2: value2 key3: {} network_parameters: type: "object" properties: oam_ip_address: type: "object" properties: connection_point: type: "string" ip_address: type: "string" workload_name: type: "string" POSTResponse: type: "object" properties: vnf_id: type: "string" name: type: "string" GETSResponse: type: "object" properties: vnf_list: items: type: "string" GETResponse: type: "object" properties: response: type: "string" PATCHRequest: type: "object" properties: name: type: "string" PATCHResponse: type: "object" properties: response: type: "string" DELETEResponse: type: "object" properties: response: type: "string"