From: Stefan Hanreich <s.hanreich@proxmox.com>
To: pdm-devel@lists.proxmox.com
Subject: [pdm-devel] [PATCH pve-api-types v2 2/2] regenerate
Date: Wed, 26 Feb 2025 16:00:57 +0100 [thread overview]
Message-ID: <20250226150057.232484-2-s.hanreich@proxmox.com> (raw)
In-Reply-To: <20250226150057.232484-1-s.hanreich@proxmox.com>
Signed-off-by: Stefan Hanreich <s.hanreich@proxmox.com>
---
pve-api-types/src/generated/code.rs | 36 ++++++++++++++---------------
1 file changed, 18 insertions(+), 18 deletions(-)
diff --git a/pve-api-types/src/generated/code.rs b/pve-api-types/src/generated/code.rs
index 597fea4..401d3bc 100644
--- a/pve-api-types/src/generated/code.rs
+++ b/pve-api-types/src/generated/code.rs
@@ -706,13 +706,13 @@ where
tokenid: &str,
params: CreateToken,
) -> Result<CreateTokenResponse, Error> {
- let url = "/api2/extjs/access/users/{userid}/token/{tokenid}";
+ let url = &format!("/api2/extjs/access/users/{userid}/token/{tokenid}");
Ok(self.0.post(url, ¶ms).await?.expect_json()?.data)
}
/// Read subscription info.
async fn get_subscription(&self, node: &str) -> Result<NodeSubscriptionInfo, Error> {
- let url = "/api2/extjs/nodes/{node}/subscription";
+ let url = &format!("/api2/extjs/nodes/{node}/subscription");
Ok(self.0.get(url).await?.expect_json()?.data)
}
@@ -768,7 +768,7 @@ where
/// Read task status.
async fn get_task_status(&self, node: &str, upid: &str) -> Result<TaskStatus, Error> {
- let url = "/api2/extjs/nodes/{node}/tasks/{upid}/status";
+ let url = &format!("/api2/extjs/nodes/{node}/tasks/{upid}/status");
Ok(self.0.get(url).await?.expect_json()?.data)
}
@@ -780,7 +780,7 @@ where
/// LXC container index (per node).
async fn list_lxc(&self, node: &str) -> Result<Vec<LxcEntry>, Error> {
- let url = "/api2/extjs/nodes/{node}/lxc";
+ let url = &format!("/api2/extjs/nodes/{node}/lxc");
Ok(self.0.get(url).await?.expect_json()?.data)
}
@@ -847,7 +847,7 @@ where
/// Get virtual machine status.
async fn lxc_get_status(&self, node: &str, vmid: u32) -> Result<LxcStatus, Error> {
- let url = "/api2/extjs/nodes/{node}/lxc/{vmid}/status/current";
+ let url = &format!("/api2/extjs/nodes/{node}/lxc/{vmid}/status/current");
Ok(self.0.get(url).await?.expect_json()?.data)
}
@@ -858,7 +858,7 @@ where
vmid: u32,
params: MigrateLxc,
) -> Result<PveUpid, Error> {
- let url = "/api2/extjs/nodes/{node}/lxc/{vmid}/migrate";
+ let url = &format!("/api2/extjs/nodes/{node}/lxc/{vmid}/migrate");
Ok(self.0.post(url, ¶ms).await?.expect_json()?.data)
}
@@ -869,13 +869,13 @@ where
vmid: u32,
params: MigrateQemu,
) -> Result<PveUpid, Error> {
- let url = "/api2/extjs/nodes/{node}/qemu/{vmid}/migrate";
+ let url = &format!("/api2/extjs/nodes/{node}/qemu/{vmid}/migrate");
Ok(self.0.post(url, ¶ms).await?.expect_json()?.data)
}
/// Read node status
async fn node_status(&self, node: &str) -> Result<NodeStatus, Error> {
- let url = "/api2/extjs/nodes/{node}/status";
+ let url = &format!("/api2/extjs/nodes/{node}/status");
Ok(self.0.get(url).await?.expect_json()?.data)
}
@@ -898,7 +898,7 @@ where
/// Get virtual machine status.
async fn qemu_get_status(&self, node: &str, vmid: u32) -> Result<QemuStatus, Error> {
- let url = "/api2/extjs/nodes/{node}/qemu/{vmid}/status/current";
+ let url = &format!("/api2/extjs/nodes/{node}/qemu/{vmid}/status/current");
Ok(self.0.get(url).await?.expect_json()?.data)
}
@@ -923,7 +923,7 @@ where
vmid: u32,
params: RemoteMigrateLxc,
) -> Result<PveUpid, Error> {
- let url = "/api2/extjs/nodes/{node}/lxc/{vmid}/remote_migrate";
+ let url = &format!("/api2/extjs/nodes/{node}/lxc/{vmid}/remote_migrate");
Ok(self.0.post(url, ¶ms).await?.expect_json()?.data)
}
@@ -935,7 +935,7 @@ where
vmid: u32,
params: RemoteMigrateQemu,
) -> Result<PveUpid, Error> {
- let url = "/api2/extjs/nodes/{node}/qemu/{vmid}/remote_migrate";
+ let url = &format!("/api2/extjs/nodes/{node}/qemu/{vmid}/remote_migrate");
Ok(self.0.post(url, ¶ms).await?.expect_json()?.data)
}
@@ -947,7 +947,7 @@ where
vmid: u32,
params: ShutdownLxc,
) -> Result<PveUpid, Error> {
- let url = "/api2/extjs/nodes/{node}/lxc/{vmid}/status/shutdown";
+ let url = &format!("/api2/extjs/nodes/{node}/lxc/{vmid}/status/shutdown");
Ok(self.0.post(url, ¶ms).await?.expect_json()?.data)
}
@@ -960,7 +960,7 @@ where
vmid: u32,
params: ShutdownQemu,
) -> Result<PveUpid, Error> {
- let url = "/api2/extjs/nodes/{node}/qemu/{vmid}/status/shutdown";
+ let url = &format!("/api2/extjs/nodes/{node}/qemu/{vmid}/status/shutdown");
Ok(self.0.post(url, ¶ms).await?.expect_json()?.data)
}
@@ -971,7 +971,7 @@ where
vmid: u32,
params: StartLxc,
) -> Result<PveUpid, Error> {
- let url = "/api2/extjs/nodes/{node}/lxc/{vmid}/status/start";
+ let url = &format!("/api2/extjs/nodes/{node}/lxc/{vmid}/status/start");
Ok(self.0.post(url, ¶ms).await?.expect_json()?.data)
}
@@ -982,7 +982,7 @@ where
vmid: u32,
params: StartQemu,
) -> Result<PveUpid, Error> {
- let url = "/api2/extjs/nodes/{node}/qemu/{vmid}/status/start";
+ let url = &format!("/api2/extjs/nodes/{node}/qemu/{vmid}/status/start");
Ok(self.0.post(url, ¶ms).await?.expect_json()?.data)
}
@@ -994,7 +994,7 @@ where
vmid: u32,
params: StopLxc,
) -> Result<PveUpid, Error> {
- let url = "/api2/extjs/nodes/{node}/lxc/{vmid}/status/stop";
+ let url = &format!("/api2/extjs/nodes/{node}/lxc/{vmid}/status/stop");
Ok(self.0.post(url, ¶ms).await?.expect_json()?.data)
}
@@ -1007,13 +1007,13 @@ where
vmid: u32,
params: StopQemu,
) -> Result<PveUpid, Error> {
- let url = "/api2/extjs/nodes/{node}/qemu/{vmid}/status/stop";
+ let url = &format!("/api2/extjs/nodes/{node}/qemu/{vmid}/status/stop");
Ok(self.0.post(url, ¶ms).await?.expect_json()?.data)
}
/// Stop a task.
async fn stop_task(&self, node: &str, upid: &str) -> Result<(), Error> {
- let url = "/api2/extjs/nodes/{node}/tasks/{upid}";
+ let url = &format!("/api2/extjs/nodes/{node}/tasks/{upid}");
self.0.delete(url).await?.nodata()
}
--
2.39.5
_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel
next prev parent reply other threads:[~2025-02-26 15:01 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-26 15:00 [pdm-devel] [PATCH pve-api-types v2 1/2] generator: fix methods with url params but no query string Stefan Hanreich
2025-02-26 15:00 ` Stefan Hanreich [this message]
2025-02-26 15:11 ` [pdm-devel] applied-series: " Wolfgang Bumiller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250226150057.232484-2-s.hanreich@proxmox.com \
--to=s.hanreich@proxmox.com \
--cc=pdm-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal