Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions openstack_types/data/network/v2.27.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15823,7 +15823,7 @@ components:
description: |-
Indicates whether L2 connectivity is available throughout
the `network`.
type: string
type: boolean
mtu:
description: |-
The maximum transmission unit (MTU) value to
Expand Down Expand Up @@ -16129,7 +16129,7 @@ components:
description: |-
Indicates whether L2 connectivity is available throughout
the `network`.
type: string
type: boolean
mtu:
description: |-
The maximum transmission unit (MTU) value to
Expand Down Expand Up @@ -16946,7 +16946,7 @@ components:
description: |-
Indicates whether L2 connectivity is available throughout
the `network`.
type: string
type: boolean
mtu:
description: |-
The maximum transmission unit (MTU) value to
Expand Down Expand Up @@ -17161,7 +17161,7 @@ components:
description: |-
Indicates whether L2 connectivity is available throughout
the `network`.
type: string
type: boolean
mtu:
description: |-
The maximum transmission unit (MTU) value to
Expand Down
8 changes: 4 additions & 4 deletions openstack_types/data/network/v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15823,7 +15823,7 @@ components:
description: |-
Indicates whether L2 connectivity is available throughout
the `network`.
type: string
type: boolean
mtu:
description: |-
The maximum transmission unit (MTU) value to
Expand Down Expand Up @@ -16129,7 +16129,7 @@ components:
description: |-
Indicates whether L2 connectivity is available throughout
the `network`.
type: string
type: boolean
mtu:
description: |-
The maximum transmission unit (MTU) value to
Expand Down Expand Up @@ -16946,7 +16946,7 @@ components:
description: |-
Indicates whether L2 connectivity is available throughout
the `network`.
type: string
type: boolean
mtu:
description: |-
The maximum transmission unit (MTU) value to
Expand Down Expand Up @@ -17161,7 +17161,7 @@ components:
description: |-
Indicates whether L2 connectivity is available throughout
the `network`.
type: string
type: boolean
mtu:
description: |-
The maximum transmission unit (MTU) value to
Expand Down
2 changes: 1 addition & 1 deletion openstack_types/src/network/v2/network/response/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pub struct NetworkResponse {
/// `network`.
#[serde(default)]
#[structable(optional)]
pub l2_adjacency: Option<String>,
pub l2_adjacency: Option<bool>,

/// The maximum transmission unit (MTU) value to address fragmentation.
/// Minimum value is 68 for IPv4, and 1280 for IPv6.
Expand Down
2 changes: 1 addition & 1 deletion openstack_types/src/network/v2/network/response/get.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pub struct NetworkResponse {
/// `network`.
#[serde(default)]
#[structable(optional)]
pub l2_adjacency: Option<String>,
pub l2_adjacency: Option<bool>,

/// The maximum transmission unit (MTU) value to address fragmentation.
/// Minimum value is 68 for IPv4, and 1280 for IPv6.
Expand Down
2 changes: 1 addition & 1 deletion openstack_types/src/network/v2/network/response/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pub struct NetworkResponse {
/// `network`.
#[serde(default)]
#[structable(optional, wide)]
pub l2_adjacency: Option<String>,
pub l2_adjacency: Option<bool>,

/// The maximum transmission unit (MTU) value to address fragmentation.
/// Minimum value is 68 for IPv4, and 1280 for IPv6.
Expand Down
2 changes: 1 addition & 1 deletion openstack_types/src/network/v2/network/response/set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pub struct NetworkResponse {
/// `network`.
#[serde(default)]
#[structable(optional)]
pub l2_adjacency: Option<String>,
pub l2_adjacency: Option<bool>,

/// The maximum transmission unit (MTU) value to address fragmentation.
/// Minimum value is 68 for IPv4, and 1280 for IPv6.
Expand Down