blob: e23d75ff8a650ab85d93fd345dee7dcfdffc7a38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
tosca_definitions_version: tosca_simple_yaml_1_1
metadata:
invariantUUID: 7878123c-e89b-48f0-8d49-a3931603059a
UUID: 1cc61e2c-e414-4927-8bf7-6e87e1cc4ac3
name: extNeutronCP
description: The AT&T Connection Point base type all other CP derive from
type: CP
category: Generic
subcategory: Network Elements
resourceVendor: ATT (Tosca)
resourceVendorRelease: 1.0.0.wd03
resourceVendorModelNumber: ''
imports:
- nodes:
file: nodes.yml
- datatypes:
file: data.yml
- capabilities:
file: capabilities.yml
- relationships:
file: relationships.yml
- groups:
file: groups.yml
- policies:
file: policies.yml
node_types:
org.openecomp.resource.cp.v2.extNeutronCP:
derived_from: org.openecomp.resource.cp.v2.extCP
description: The AT&T Connection Point base type all other CP derive from
properties:
port_security_enabled:
type: boolean
description: Flag to enable/disable port security on the network
device_id:
type: string
description: Device ID of this port
qos_policy:
type: string
description: The name or ID of QoS policy to attach to this network
allowed_address_pairs:
type: list
description: Additional MAC/IP address pairs allowed to pass through the port
entry_schema:
type: org.openecomp.datatypes.heat.network.AddressPair
binding:vnic_type:
type: string
description: The vnic type to be bound on the neutron port
value_specs:
default: {
}
type: map
description: Extra parameters to include in the request
entry_schema:
type: string
device_owner:
type: string
description: Name of the network owning the port
network:
type: string
description: Network this port belongs to
replacement_policy:
default: AUTO
type: string
description: Policy on how to respond to a stack-update for this resource
security_groups:
type: list
description: List of security group names or IDs
entry_schema:
type: string
fixed_ips:
type: list
description: Desired IPs for this port
entry_schema:
type: org.openecomp.datatypes.heat.neutron.port.FixedIps
mac_address:
type: string
description: MAC address to give to this port
admin_state_up:
default: true
type: boolean
description: A boolean value specifying the administrative status of the network
name:
type: string
description: A symbolic name for this port
capabilities:
attachment:
type: tosca.capabilities.Attachment
occurrences:
- 1
- UNBOUNDED
valid_source_types: [
]
binding:
type: tosca.capabilities.network.Bindable
occurrences:
- 0
- UNBOUNDED
valid_source_types:
- org.openecomp.resource.cp.nodes.heat.network.contrailV2.VLANSubInterface
|