Skip to content

Commit ff80a94

Browse files
Rebuilt with latest dependency updates
1 parent 62edcd2 commit ff80a94

2 files changed

Lines changed: 8 additions & 80 deletions

File tree

oxide.json

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://oxide.computer",
88
"email": "api@oxide.computer"
99
},
10-
"version": "2026041600.0.0"
10+
"version": "2026041900.0.0"
1111
},
1212
"paths": {
1313
"/device/auth": {
@@ -26505,10 +26505,6 @@
2650526505
"minimum": 0,
2650626506
"maximum": 9000
2650726507
},
26508-
"RouterPeerIpAddr": {
26509-
"type": "string",
26510-
"format": "ip"
26511-
},
2651226508
"RouterPeerType": {
2651326509
"oneOf": [
2651426510
{
@@ -26539,11 +26535,8 @@
2653926535
"properties": {
2654026536
"ip": {
2654126537
"description": "IP address for numbered BGP peers.",
26542-
"allOf": [
26543-
{
26544-
"$ref": "#/components/schemas/RouterPeerIpAddr"
26545-
}
26546-
]
26538+
"type": "string",
26539+
"format": "ip"
2654726540
},
2654826541
"type": {
2654926542
"type": "string",

sdk/src/generated_sdk.rs

Lines changed: 5 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -24378,68 +24378,6 @@ pub mod types {
2437824378
}
2437924379
}
2438024380

24381-
/// `RouterPeerIpAddr`
24382-
///
24383-
/// <details><summary>JSON schema</summary>
24384-
///
24385-
/// ```json
24386-
/// {
24387-
/// "type": "string",
24388-
/// "format": "ip"
24389-
/// }
24390-
/// ```
24391-
/// </details>
24392-
#[derive(
24393-
:: serde :: Deserialize, :: serde :: Serialize, Clone, Debug, schemars :: JsonSchema,
24394-
)]
24395-
#[serde(transparent)]
24396-
pub struct RouterPeerIpAddr(pub ::std::net::IpAddr);
24397-
impl ::std::ops::Deref for RouterPeerIpAddr {
24398-
type Target = ::std::net::IpAddr;
24399-
fn deref(&self) -> &::std::net::IpAddr {
24400-
&self.0
24401-
}
24402-
}
24403-
24404-
impl ::std::convert::From<RouterPeerIpAddr> for ::std::net::IpAddr {
24405-
fn from(value: RouterPeerIpAddr) -> Self {
24406-
value.0
24407-
}
24408-
}
24409-
24410-
impl ::std::convert::From<::std::net::IpAddr> for RouterPeerIpAddr {
24411-
fn from(value: ::std::net::IpAddr) -> Self {
24412-
Self(value)
24413-
}
24414-
}
24415-
24416-
impl ::std::str::FromStr for RouterPeerIpAddr {
24417-
type Err = <::std::net::IpAddr as ::std::str::FromStr>::Err;
24418-
fn from_str(value: &str) -> ::std::result::Result<Self, Self::Err> {
24419-
Ok(Self(value.parse()?))
24420-
}
24421-
}
24422-
24423-
impl ::std::convert::TryFrom<&str> for RouterPeerIpAddr {
24424-
type Error = <::std::net::IpAddr as ::std::str::FromStr>::Err;
24425-
fn try_from(value: &str) -> ::std::result::Result<Self, Self::Error> {
24426-
value.parse()
24427-
}
24428-
}
24429-
24430-
impl ::std::convert::TryFrom<String> for RouterPeerIpAddr {
24431-
type Error = <::std::net::IpAddr as ::std::str::FromStr>::Err;
24432-
fn try_from(value: String) -> ::std::result::Result<Self, Self::Error> {
24433-
value.parse()
24434-
}
24435-
}
24436-
24437-
impl ::std::fmt::Display for RouterPeerIpAddr {
24438-
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
24439-
self.0.fmt(f)
24440-
}
24441-
}
24442-
2444324381
/// `RouterPeerType`
2444424382
///
2444524383
/// <details><summary>JSON schema</summary>
@@ -24480,11 +24418,8 @@ pub mod types {
2448024418
/// "properties": {
2448124419
/// "ip": {
2448224420
/// "description": "IP address for numbered BGP peers.",
24483-
/// "allOf": [
24484-
/// {
24485-
/// "$ref": "#/components/schemas/RouterPeerIpAddr"
24486-
/// }
24487-
/// ]
24421+
/// "type": "string",
24422+
/// "format": "ip"
2448824423
/// },
2448924424
/// "type": {
2449024425
/// "type": "string",
@@ -24511,7 +24446,7 @@ pub mod types {
2451124446
#[serde(rename = "numbered")]
2451224447
Numbered {
2451324448
/// IP address for numbered BGP peers.
24514-
ip: RouterPeerIpAddr,
24449+
ip: ::std::net::IpAddr,
2451524450
},
2451624451
}
2451724452

@@ -65841,7 +65776,7 @@ pub mod types {
6584165776
///
6584265777
/// API for interacting with the Oxide control plane
6584365778
///
65844-
/// Version: 2026041600.0.0
65779+
/// Version: 2026041900.0.0
6584565780
pub struct Client {
6584665781
pub(crate) baseurl: String,
6584765782
pub(crate) client: reqwest::Client,
@@ -65882,7 +65817,7 @@ impl Client {
6588265817

6588365818
impl ClientInfo<()> for Client {
6588465819
fn api_version() -> &'static str {
65885-
"2026041600.0.0"
65820+
"2026041900.0.0"
6588665821
}
6588765822

6588865823
fn baseurl(&self) -> &str {

0 commit comments

Comments
 (0)