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
4 changes: 4 additions & 0 deletions openstack_sdk/src/api/load_balancer/v2/loadbalancer/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,10 @@ pub struct AdditionalVips<'a> {
#[builder(default, setter(into))]
pub(crate) ip_address: Option<Cow<'a, str>>,

#[serde(skip_serializing_if = "Option::is_none")]
#[builder(default, setter(into))]
pub(crate) port_id: Option<Cow<'a, str>>,

#[serde()]
#[builder(setter(into))]
pub(crate) subnet_id: Cow<'a, str>,
Expand Down
15 changes: 15 additions & 0 deletions openstack_types/data/load-balancer/v2.27.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7317,6 +7317,9 @@ components:
ip_address:
format: ipaddress
type: string
port_id:
format: uuid
type: string
subnet_id:
format: uuid
type: string
Expand Down Expand Up @@ -7483,6 +7486,9 @@ components:
ip_address:
format: ipaddress
type: string
port_id:
format: uuid
type: string
subnet_id:
format: uuid
type: string
Expand Down Expand Up @@ -7647,6 +7653,9 @@ components:
ip_address:
format: ipaddress
type: string
port_id:
format: uuid
type: string
subnet_id:
format: uuid
type: string
Expand Down Expand Up @@ -8205,6 +8214,9 @@ components:
ip_address:
format: ipaddress
type: string
port_id:
format: uuid
type: string
subnet_id:
format: uuid
type: string
Expand Down Expand Up @@ -10882,6 +10894,9 @@ components:
ip_address:
format: ipaddress
type: string
port_id:
format: uuid
type: string
subnet_id:
format: uuid
type: string
Expand Down
15 changes: 15 additions & 0 deletions openstack_types/data/load-balancer/v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7317,6 +7317,9 @@ components:
ip_address:
format: ipaddress
type: string
port_id:
format: uuid
type: string
subnet_id:
format: uuid
type: string
Expand Down Expand Up @@ -7483,6 +7486,9 @@ components:
ip_address:
format: ipaddress
type: string
port_id:
format: uuid
type: string
subnet_id:
format: uuid
type: string
Expand Down Expand Up @@ -7647,6 +7653,9 @@ components:
ip_address:
format: ipaddress
type: string
port_id:
format: uuid
type: string
subnet_id:
format: uuid
type: string
Expand Down Expand Up @@ -8205,6 +8214,9 @@ components:
ip_address:
format: ipaddress
type: string
port_id:
format: uuid
type: string
subnet_id:
format: uuid
type: string
Expand Down Expand Up @@ -10882,6 +10894,9 @@ components:
ip_address:
format: ipaddress
type: string
port_id:
format: uuid
type: string
subnet_id:
format: uuid
type: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ pub struct LoadbalancerResponse {
pub struct AdditionalVips {
#[serde(default)]
pub ip_address: Option<String>,
#[serde(default)]
pub port_id: Option<String>,
pub subnet_id: String,
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ pub struct LoadbalancerResponse {
pub struct AdditionalVips {
#[serde(default)]
pub ip_address: Option<String>,
#[serde(default)]
pub port_id: Option<String>,
pub subnet_id: String,
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ pub struct LoadbalancerResponse {
pub struct AdditionalVips {
#[serde(default)]
pub ip_address: Option<String>,
#[serde(default)]
pub port_id: Option<String>,
pub subnet_id: String,
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,8 @@ pub struct LoadbalancerResponse {
pub struct AdditionalVips {
#[serde(default)]
pub ip_address: Option<String>,
#[serde(default)]
pub port_id: Option<String>,
pub subnet_id: String,
}

Expand Down