Merge "Documenting L2 adjacency extension"
This commit is contained in:
commit
ec19031d5b
@ -68,6 +68,17 @@ The ``network_availability_zone`` extension provides support of availability
|
||||
zone for networks, exposing ``availability_zone_hints``
|
||||
and ``availability_zones`` attributes.
|
||||
|
||||
L2 adjacency extension
|
||||
======================
|
||||
|
||||
The ``l2_adjacency`` extension provides display of L2 Adjacency
|
||||
for ``networks`` by adding the read-only ``l2_adjacency`` attribute.
|
||||
This is a boolean value where ``true`` means that you can expect
|
||||
L2 connectivity throughout the Network and ``false`` means that there
|
||||
is no guarantee of L2 connectivity.
|
||||
This value is read-only and is derived from the current state of
|
||||
``segments`` within the ``network``.
|
||||
|
||||
DNS integration
|
||||
===============
|
||||
|
||||
@ -139,6 +150,7 @@ Response Parameters
|
||||
- created_at: created_at_resource
|
||||
- dns_domain: dns_domain
|
||||
- id: network-id
|
||||
- l2_adjacency: l2_adjacency
|
||||
- mtu: mtu
|
||||
- name: network-name
|
||||
- port_security_enabled: network-port_security_enabled
|
||||
@ -239,6 +251,7 @@ Response Parameters
|
||||
- availability_zones: availability_zones
|
||||
- dns_domain: dns_domain
|
||||
- id: network-id
|
||||
- l2_adjacency: l2_adjacency
|
||||
- mtu: mtu
|
||||
- name: network-name
|
||||
- port_security_enabled: network-port_security_enabled
|
||||
@ -338,6 +351,7 @@ Response Parameters
|
||||
- availability_zones: availability_zones
|
||||
- dns_domain: dns_domain
|
||||
- id: network-id
|
||||
- l2_adjacency: l2_adjacency
|
||||
- mtu: mtu
|
||||
- name: network-name
|
||||
- port_security_enabled: network-port_security_enabled
|
||||
@ -443,6 +457,7 @@ Response Parameters
|
||||
- availability_zones: availability_zones
|
||||
- dns_domain: dns_domain
|
||||
- id: network-id
|
||||
- l2_adjacency: l2_adjacency
|
||||
- mtu: mtu
|
||||
- name: network-name
|
||||
- port_security_enabled: network-port_security_enabled
|
||||
@ -537,6 +552,7 @@ Response Parameters
|
||||
- availability_zones: availability_zones
|
||||
- dns_domain: dns_domain
|
||||
- id: network-id
|
||||
- l2_adjacency: l2_adjacency
|
||||
- mtu: mtu
|
||||
- name: network-name
|
||||
- port_security_enabled: network-port_security_enabled
|
||||
|
@ -2289,6 +2289,13 @@ ipsecpolicy_id-body-response:
|
||||
in: body
|
||||
required: true
|
||||
type: string
|
||||
l2_adjacency:
|
||||
description: |
|
||||
Indicates whether L2 connectivity is available throughout
|
||||
the ``network``.
|
||||
in: body
|
||||
required: true
|
||||
type: boolean
|
||||
lb_algorithm:
|
||||
description: |
|
||||
The load-balancer algorithm, which is round-robin
|
||||
|
@ -8,6 +8,7 @@
|
||||
"created_at": "2016-03-08T20:19:41",
|
||||
"dns_domain": "my-domain.org.",
|
||||
"id": "4e8e5957-649f-477b-9e5b-f1f75b21c03c",
|
||||
"l2_adjacency": true,
|
||||
"mtu": 1400,
|
||||
"name": "net1",
|
||||
"port_security_enabled": true,
|
||||
|
@ -9,6 +9,7 @@
|
||||
"name": "net1",
|
||||
"admin_state_up": true,
|
||||
"dns_domain": "",
|
||||
"l2_adjacency": true,
|
||||
"mtu": 1500,
|
||||
"port_security_enabled": true,
|
||||
"project_id": "9bacb3c5d39d41a79512987f338cf177",
|
||||
|
@ -8,6 +8,7 @@
|
||||
"created_at": "2016-03-08T20:19:41",
|
||||
"dns_domain": "my-domain.org.",
|
||||
"id": "4e8e5957-649f-477b-9e5b-f1f75b21c03c",
|
||||
"l2_adjacency": false,
|
||||
"mtu": 1500,
|
||||
"name": "net1",
|
||||
"port_security_enabled": true,
|
||||
|
@ -16,6 +16,7 @@
|
||||
"revision_number": 1,
|
||||
"router:external": false,
|
||||
"provider:network_type": "vlan",
|
||||
"l2_adjacency": true,
|
||||
"mtu": 1500,
|
||||
"shared": false,
|
||||
"id": "4e8e5957-649f-477b-9e5b-f1f75b21c03c",
|
||||
|
@ -8,6 +8,7 @@
|
||||
"created_at": "2016-03-08T20:19:41",
|
||||
"dns_domain": "my-domain.org.",
|
||||
"id": "d32019d3-bc6e-4319-9c1d-6722fc136a22",
|
||||
"l2_adjacency": false,
|
||||
"mtu": 1500,
|
||||
"name": "private-network",
|
||||
"port_security_enabled": true,
|
||||
|
@ -8,6 +8,7 @@
|
||||
"created_at": "2016-03-08T20:19:41",
|
||||
"dns_domain": "my-domain.org.",
|
||||
"id": "d32019d3-bc6e-4319-9c1d-6722fc136a22",
|
||||
"l2_adjacency": false,
|
||||
"mtu": 1500,
|
||||
"name": "private-network",
|
||||
"port_security_enabled": true,
|
||||
|
@ -8,6 +8,7 @@
|
||||
"created_at": "2016-03-08T20:19:41",
|
||||
"dns_domain": "my-domain.org.",
|
||||
"id": "1f370095-98f6-4079-be64-6d3d4a6adcc6",
|
||||
"l2_adjacency": false,
|
||||
"mtu": 1300,
|
||||
"name": "sample_network_5_updated",
|
||||
"port_security_enabled": true,
|
||||
|
@ -9,6 +9,7 @@
|
||||
"created_at": "2016-03-08T20:19:41",
|
||||
"dns_domain": "",
|
||||
"id": "bc1a76cb-8767-4c3a-bb95-018b822f2130",
|
||||
"l2_adjacency": true,
|
||||
"mtu": 1500,
|
||||
"name": "sample_network3",
|
||||
"project_id": "4fd44f30292945e481c7b8a0c8908869",
|
||||
@ -34,6 +35,7 @@
|
||||
"created_at": "2016-03-08T20:19:41",
|
||||
"dns_domain": "",
|
||||
"id": "af374017-c9ae-4a1d-b799-ab73111476e2",
|
||||
"l2_adjacency": true,
|
||||
"mtu": 1500,
|
||||
"name": "sample_network4",
|
||||
"project_id": "4fd44f30292945e481c7b8a0c8908869",
|
||||
|
@ -9,6 +9,7 @@
|
||||
"created_at": "2016-03-08T20:19:41",
|
||||
"dns_domain": "my-domain.org.",
|
||||
"id": "d32019d3-bc6e-4319-9c1d-6722fc136a22",
|
||||
"l2_adjacency": false,
|
||||
"mtu": 1500,
|
||||
"name": "net1",
|
||||
"port_security_enabled": true,
|
||||
@ -35,6 +36,7 @@
|
||||
],
|
||||
"dns_domain": "my-domain.org.",
|
||||
"id": "db193ab3-96e3-4cb3-8fc5-05f4296d0324",
|
||||
"l2_adjacency": false,
|
||||
"mtu": 1500,
|
||||
"name": "net2",
|
||||
"port_security_enabled": true,
|
||||
|
@ -9,6 +9,7 @@
|
||||
"created_at": "2016-03-08T20:19:41",
|
||||
"dns_domain": "my-domain.org.",
|
||||
"id": "d32019d3-bc6e-4319-9c1d-6722fc136a22",
|
||||
"l2_adjacency": false,
|
||||
"mtu": 1500,
|
||||
"name": "net1",
|
||||
"port_security_enabled": true,
|
||||
@ -37,6 +38,7 @@
|
||||
],
|
||||
"dns_domain": "my-domain.org.",
|
||||
"id": "db193ab3-96e3-4cb3-8fc5-05f4296d0324",
|
||||
"l2_adjacency": false,
|
||||
"mtu": 1450,
|
||||
"name": "net2",
|
||||
"port_security_enabled": true,
|
||||
|
Loading…
x
Reference in New Issue
Block a user