From: Christoph Heiss <c.heiss@proxmox.com>
To: pdm-devel@lists.proxmox.com
Subject: [PATCH datacenter-manager v4 20/40] client: add bindings for auto-installer endpoints
Date: Thu, 30 Apr 2026 14:46:49 +0200 [thread overview]
Message-ID: <20260430124712.1614305-21-c.heiss@proxmox.com> (raw)
In-Reply-To: <20260430124712.1614305-1-c.heiss@proxmox.com>
Signed-off-by: Christoph Heiss <c.heiss@proxmox.com>
---
Changes v3 -> v4:
* fix root password setting on prepared installation config creation
Must be passed separately and set using a small, extra struct, as
the API type does not have the field.
* rename `autoinst_auth_token_*()` -> `autoinst_token_*()`
* use new create/update result types
Changes v2 -> v3:
* new patch
lib/pdm-client/src/lib.rs | 245 ++++++++++++++++++++++++++++++++++++++
1 file changed, 245 insertions(+)
diff --git a/lib/pdm-client/src/lib.rs b/lib/pdm-client/src/lib.rs
index 8324a27..132525a 100644
--- a/lib/pdm-client/src/lib.rs
+++ b/lib/pdm-client/src/lib.rs
@@ -3,6 +3,12 @@
use std::collections::HashMap;
use std::time::Duration;
+use pdm_api_types::auto_installer::{
+ AnswerToken, AnswerTokenCreateResult, AnswerTokenUpdateResult, AnswerTokenUpdater,
+ DeletableAnswerTokenProperty, DeletablePreparedInstallationConfigProperty, Installation,
+ PreparedInstallationConfig, PreparedInstallationConfigCreateResult,
+ PreparedInstallationConfigUpdateResult, PreparedInstallationConfigUpdater,
+};
use pdm_api_types::remote_updates::RemoteUpdateSummary;
use pdm_api_types::remotes::{RemoteType, TlsProbeOutcome};
use pdm_api_types::resource::{PveResource, RemoteResources, ResourceType, TopEntities};
@@ -1376,6 +1382,245 @@ impl<T: HttpApiClient> PdmClient<T> {
.expect_json()?
.data)
}
+
+ /// Retrieves all known installations done by auto-installer.
+ pub async fn get_autoinst_installations(&self) -> Result<Vec<Installation>, Error> {
+ Ok(self
+ .0
+ .get("/api2/extjs/auto-install/installations")
+ .await?
+ .expect_json()?
+ .data)
+ }
+
+ /// Deletes a saved auto-installation.
+ ///
+ /// # Parameters
+ ///
+ /// * `id` - ID of the entry to delete. Must be percent-encoded.
+ pub async fn delete_autoinst_installation(&self, id: &str) -> Result<(), Error> {
+ self.0
+ .delete(&format!("/api2/extjs/auto-install/installations/{id}"))
+ .await?
+ .nodata()?;
+ Ok(())
+ }
+
+ /// Retrieves all prepared answer configurations.
+ pub async fn get_autoinst_prepared_answers(
+ &self,
+ ) -> Result<Vec<PreparedInstallationConfig>, Error> {
+ Ok(self
+ .0
+ .get("/api2/extjs/auto-install/prepared")
+ .await?
+ .expect_json()?
+ .data)
+ }
+
+ /// Adds a new prepared answer file configuration for automated installations.
+ ///
+ /// # Arguments
+ ///
+ /// * `config` - Answer to create.
+ /// * `root_password` - Optional root password to set for this answer.
+ ///
+ /// # Returns
+ ///
+ /// The newly created configuration, including the generated secret.
+ pub async fn add_autoinst_prepared_answer(
+ &self,
+ config: &PreparedInstallationConfig,
+ root_password: Option<&str>,
+ ) -> Result<PreparedInstallationConfigCreateResult, Error> {
+ #[derive(Serialize)]
+ #[serde(rename_all = "kebab-case")]
+ struct CreatePreparedAnswer<'a> {
+ #[serde(flatten)]
+ config: &'a PreparedInstallationConfig,
+ #[serde(skip_serializing_if = "Option::is_none")]
+ root_password: Option<&'a str>,
+ }
+
+ Ok(self
+ .0
+ .post(
+ "/api2/extjs/auto-install/prepared",
+ &CreatePreparedAnswer {
+ config,
+ root_password,
+ },
+ )
+ .await?
+ .expect_json()?
+ .data)
+ }
+
+ /// Update an existing prepared answer file configuration for automated installations.
+ ///
+ /// # Arguments
+ ///
+ /// * `id` - ID of the entry to delete. Must be percent-encoded.
+ /// * `updater` - Field values to update.
+ /// * `root_password` - Optional root password to set for this answer.
+ /// * `delete` - List of properties to delete.
+ pub async fn update_autoinst_prepared_answer(
+ &self,
+ id: &str,
+ updater: &PreparedInstallationConfigUpdater,
+ root_password: Option<&str>,
+ delete: &[DeletablePreparedInstallationConfigProperty],
+ ) -> Result<PreparedInstallationConfigUpdateResult, Error> {
+ #[derive(Serialize)]
+ #[serde(rename_all = "kebab-case")]
+ struct UpdatePreparedAnswer<'a> {
+ #[serde(flatten)]
+ updater: &'a PreparedInstallationConfigUpdater,
+ #[serde(skip_serializing_if = "Option::is_none")]
+ root_password: Option<&'a str>,
+ #[serde(skip_serializing_if = "Vec::is_empty")]
+ delete: Vec<String>,
+ }
+
+ let delete = delete
+ .iter()
+ .map(DeletablePreparedInstallationConfigProperty::to_string)
+ .collect();
+
+ Ok(self
+ .0
+ .put(
+ &format!("/api2/extjs/auto-install/prepared/{id}"),
+ &UpdatePreparedAnswer {
+ updater,
+ root_password,
+ delete,
+ },
+ )
+ .await?
+ .expect_json()?
+ .data)
+ }
+
+ /// Deletes a prepared answer for automated installations.
+ ///
+ /// # Parameters
+ ///
+ /// * `id` - ID of the entry to delete. Must be percent-encoded.
+ pub async fn delete_autoinst_prepared_answer(&self, id: &str) -> Result<(), Error> {
+ self.0
+ .delete(&format!("/api2/extjs/auto-install/prepared/{id}"))
+ .await?
+ .nodata()?;
+ Ok(())
+ }
+
+ /// Retrieves all access tokens for the auto-installer server.
+ pub async fn get_autoinst_tokens(&self) -> Result<Vec<AnswerToken>, Error> {
+ Ok(self
+ .0
+ .get("/api2/extjs/auto-install/tokens")
+ .await?
+ .expect_json()?
+ .data)
+ }
+
+ /// Adds a new access token for authenticating requests from the automated installer.
+ ///
+ /// # Parameters
+ ///
+ /// * `id` - Name of the token to create.
+ /// * `comment` - Optional comment for the token.
+ /// * `enabled` - Whether this token is enabled.
+ /// * `expire_at` - Optional expiration date for this token.
+ pub async fn add_autoinst_token(
+ &self,
+ id: &str,
+ comment: Option<String>,
+ enabled: Option<bool>,
+ expire_at: Option<i64>,
+ ) -> Result<AnswerTokenCreateResult, Error> {
+ #[derive(Serialize)]
+ #[serde(rename_all = "kebab-case")]
+ struct CreateTokenRequest<'a> {
+ id: &'a str,
+ comment: &'a Option<String>,
+ enabled: Option<bool>,
+ expire_at: Option<i64>,
+ }
+
+ Ok(self
+ .0
+ .post(
+ "/api2/extjs/auto-install/tokens",
+ &CreateTokenRequest {
+ id,
+ comment: &comment,
+ enabled,
+ expire_at,
+ },
+ )
+ .await?
+ .expect_json::<AnswerTokenCreateResult>()?
+ .data)
+ }
+
+ /// Updates an existing access token for authenticating requests from the automated installer.
+ ///
+ /// # Parameters
+ ///
+ /// * `id` - Name of the token to update.
+ /// * `updater` - Fields to update.
+ /// * `delete` - Fields to delete.
+ pub async fn update_autoinst_token(
+ &self,
+ id: &str,
+ updater: &AnswerTokenUpdater,
+ delete: &[DeletableAnswerTokenProperty],
+ regenerate_secret: bool,
+ ) -> Result<AnswerTokenUpdateResult, Error> {
+ #[derive(Serialize)]
+ #[serde(rename_all = "kebab-case")]
+ struct UpdateToken<'a> {
+ #[serde(flatten)]
+ updater: &'a AnswerTokenUpdater,
+ #[serde(skip_serializing_if = "Vec::is_empty")]
+ delete: Vec<String>,
+ regenerate_secret: bool,
+ }
+
+ let delete = delete
+ .iter()
+ .map(DeletableAnswerTokenProperty::to_string)
+ .collect();
+
+ Ok(self
+ .0
+ .put(
+ &format!("/api2/extjs/auto-install/tokens/{id}"),
+ &UpdateToken {
+ updater,
+ delete,
+ regenerate_secret,
+ },
+ )
+ .await?
+ .expect_json::<AnswerTokenUpdateResult>()?
+ .data)
+ }
+
+ /// Deletes an access token used for authenticating automated installations.
+ ///
+ /// # Parameters
+ ///
+ /// * `id` - Name of the token to delete.
+ pub async fn delete_autoinst_token(&self, id: &str) -> Result<(), Error> {
+ self.0
+ .delete(&format!("/api2/extjs/auto-install/tokens/{id}"))
+ .await?
+ .nodata()?;
+ Ok(())
+ }
}
/// Builder for migration parameters.
--
2.53.0
next prev parent reply other threads:[~2026-04-30 12:49 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-30 12:46 [PATCH datacenter-manager/installer/proxmox/yew-comp v4 00/40] add auto-installer integration Christoph Heiss
2026-04-30 12:46 ` [PATCH proxmox v4 01/40] api-macro: allow $ in identifier name Christoph Heiss
2026-04-30 12:46 ` [PATCH proxmox v4 02/40] schema: oneOf: allow single string variant Christoph Heiss
2026-04-30 12:46 ` [PATCH proxmox v4 03/40] schema: implement UpdaterType for HashMap and BTreeMap Christoph Heiss
2026-04-30 12:46 ` [PATCH proxmox v4 04/40] network-types: move `Fqdn` type from proxmox-installer-common Christoph Heiss
2026-04-30 12:46 ` [PATCH proxmox v4 05/40] network-types: implement api type for Fqdn Christoph Heiss
2026-04-30 12:46 ` [PATCH proxmox v4 06/40] network-types: add api wrapper type for std::net::IpAddr Christoph Heiss
2026-04-30 12:46 ` [PATCH proxmox v4 07/40] network-types: cidr: implement generic `IpAddr::new` constructor Christoph Heiss
2026-04-30 12:46 ` [PATCH proxmox v4 08/40] network-types: fqdn: implement standard library Error for Fqdn Christoph Heiss
2026-04-30 12:46 ` [PATCH proxmox v4 09/40] node-status: make KernelVersionInformation Clone + PartialEq Christoph Heiss
2026-04-30 12:46 ` [PATCH proxmox v4 10/40] installer-types: add common types used by the installer Christoph Heiss
2026-04-30 12:46 ` [PATCH proxmox v4 11/40] installer-types: add types used by the auto-installer Christoph Heiss
2026-04-30 12:46 ` [PATCH proxmox v4 12/40] installer-types: implement api type for all externally-used types Christoph Heiss
2026-04-30 12:46 ` [PATCH yew-comp v4 13/40] widget: kvlist: add widget for user-modifiable data tables Christoph Heiss
2026-04-30 12:46 ` [PATCH datacenter-manager v4 14/40] api-types, cli: use ReturnType::new() instead of constructing it manually Christoph Heiss
2026-04-30 12:46 ` [PATCH datacenter-manager v4 15/40] api-types: add api types for auto-installer integration Christoph Heiss
2026-04-30 12:46 ` [PATCH datacenter-manager v4 16/40] config: add auto-installer configuration module Christoph Heiss
2026-04-30 12:46 ` [PATCH datacenter-manager v4 17/40] acl: wire up new /system/auto-installation acl path Christoph Heiss
2026-04-30 12:46 ` [PATCH datacenter-manager v4 18/40] server: api: add auto-installer integration module Christoph Heiss
2026-04-30 12:46 ` [PATCH datacenter-manager v4 19/40] server: api: auto-installer: add access token management endpoints Christoph Heiss
2026-04-30 12:46 ` Christoph Heiss [this message]
2026-04-30 12:46 ` [PATCH datacenter-manager v4 21/40] ui: auto-installer: add installations overview panel Christoph Heiss
2026-04-30 12:46 ` [PATCH datacenter-manager v4 22/40] ui: auto-installer: add prepared answer configuration panel Christoph Heiss
2026-04-30 12:46 ` [PATCH datacenter-manager v4 23/40] ui: auto-installer: add access token " Christoph Heiss
2026-04-30 12:46 ` [PATCH datacenter-manager v4 24/40] docs: add documentation for auto-installer integration Christoph Heiss
2026-04-30 12:46 ` [PATCH installer v4 25/40] install: iso env: use JSON boolean literals for product config Christoph Heiss
2026-04-30 12:46 ` [PATCH installer v4 26/40] common: http: allow passing custom headers to post() Christoph Heiss
2026-04-30 12:46 ` [PATCH installer v4 27/40] common: http: retrieve error message from body on post() Christoph Heiss
2026-04-30 12:46 ` [PATCH installer v4 28/40] common: options: move regex construction out of loop Christoph Heiss
2026-04-30 12:46 ` [PATCH installer v4 29/40] assistant: support adding an authorization token for HTTP-based answers Christoph Heiss
2026-04-30 12:46 ` [PATCH installer v4 30/40] post-hook: run cargo fmt Christoph Heiss
2026-04-30 12:47 ` [PATCH installer v4 31/40] tree-wide: used moved `Fqdn` type to proxmox-network-types Christoph Heiss
2026-04-30 12:47 ` [PATCH installer v4 32/40] tree-wide: use `Cidr` type from proxmox-network-types Christoph Heiss
2026-04-30 12:47 ` [PATCH installer v4 33/40] tree-wide: switch to filesystem types from proxmox-installer-types Christoph Heiss
2026-04-30 12:47 ` [PATCH installer v4 34/40] auto: sysinfo: switch to " Christoph Heiss
2026-04-30 12:47 ` [PATCH installer v4 35/40] fetch-answer: " Christoph Heiss
2026-04-30 12:47 ` [PATCH installer v4 36/40] fetch-answer: http: prefer json over toml for answer format Christoph Heiss
2026-04-30 12:47 ` [PATCH installer v4 37/40] fetch-answer: send auto-installer HTTP authorization token if set Christoph Heiss
2026-04-30 12:47 ` [PATCH installer v4 38/40] fetch-answer: print full error messages when fetching failed Christoph Heiss
2026-04-30 12:47 ` [PATCH installer v4 39/40] tree-wide: switch out `Answer` -> `AutoInstallerConfig` types Christoph Heiss
2026-04-30 12:47 ` [PATCH installer v4 40/40] auto: drop now-dead answer file definitions Christoph Heiss
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=20260430124712.1614305-21-c.heiss@proxmox.com \
--to=c.heiss@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