From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id 8D95E1FF13E for ; Fri, 03 Apr 2026 18:56:04 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id 576E18302; Fri, 3 Apr 2026 18:56:35 +0200 (CEST) From: Christoph Heiss To: pdm-devel@lists.proxmox.com Subject: [PATCH datacenter-manager v3 20/38] client: add bindings for auto-installer endpoints Date: Fri, 3 Apr 2026 18:53:52 +0200 Message-ID: <20260403165437.2166551-21-c.heiss@proxmox.com> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260403165437.2166551-1-c.heiss@proxmox.com> References: <20260403165437.2166551-1-c.heiss@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1775235329184 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.934 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment KAM_MAILER 2 Automated Mailer Tag Left in Email SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: OFXJUIEQTYI6NQFHSADSFM3ZMR2EF3J2 X-Message-ID-Hash: OFXJUIEQTYI6NQFHSADSFM3ZMR2EF3J2 X-MailFrom: c.heiss@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox Datacenter Manager development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Signed-off-by: Christoph Heiss --- Changes v2 -> v3: * new patch lib/pdm-client/src/lib.rs | 232 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 232 insertions(+) diff --git a/lib/pdm-client/src/lib.rs b/lib/pdm-client/src/lib.rs index 1565869..190d1f5 100644 --- a/lib/pdm-client/src/lib.rs +++ b/lib/pdm-client/src/lib.rs @@ -3,6 +3,11 @@ use std::collections::HashMap; use std::time::Duration; +use pdm_api_types::auto_installer::{ + AnswerAuthToken, AnswerAuthTokenUpdater, DeletableAnswerAuthTokenProperty, + DeletablePreparedInstallationConfigProperty, Installation, PreparedInstallationConfig, + 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 +1381,233 @@ impl PdmClient { .expect_json()? .data) } + + /// Retrieves all known installations done by auto-installer. + pub async fn get_autoinst_installations(&self) -> Result, 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, 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 + /// + /// * `answer` - Answer to create. + pub async fn add_autoinst_prepared_answer( + &self, + answer: &PreparedInstallationConfig, + ) -> Result<(), Error> { + self.0 + .post("/api2/extjs/auto-install/prepared", answer) + .await? + .nodata() + } + + /// 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<(), Error> { + #[derive(Serialize)] + 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, + } + + let delete = delete + .iter() + .map(DeletablePreparedInstallationConfigProperty::to_string) + .collect(); + + self.0 + .put( + &format!("/api2/extjs/auto-install/prepared/{id}"), + &UpdatePreparedAnswer { + updater, + root_password, + delete, + }, + ) + .await? + .nodata() + } + + /// 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_auth_tokens(&self) -> Result, 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_auth_token( + &self, + id: &str, + comment: Option, + enabled: Option, + expire_at: Option, + ) -> Result<(AnswerAuthToken, String), Error> { + #[derive(Serialize)] + #[serde(rename_all = "kebab-case")] + struct CreateTokenRequest<'a> { + id: &'a str, + comment: &'a Option, + enabled: Option, + expire_at: Option, + } + + #[derive(Deserialize)] + struct CreateTokenResponse { + token: AnswerAuthToken, + secret: String, + } + + let response = self + .0 + .post( + "/api2/extjs/auto-install/tokens", + &CreateTokenRequest { + id, + comment: &comment, + enabled, + expire_at, + }, + ) + .await? + .expect_json::()?; + + Ok((response.data.token, response.data.secret)) + } + + /// 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_auth_token( + &self, + id: &str, + updater: &AnswerAuthTokenUpdater, + delete: &[DeletableAnswerAuthTokenProperty], + regenerate_secret: bool, + ) -> Result<(AnswerAuthToken, Option), Error> { + #[derive(Serialize)] + #[serde(rename_all = "kebab-case")] + struct UpdateToken<'a> { + #[serde(flatten)] + updater: &'a AnswerAuthTokenUpdater, + #[serde(skip_serializing_if = "Vec::is_empty")] + delete: Vec, + regenerate_secret: bool, + } + + #[derive(Deserialize)] + struct UpdateTokenResponse { + token: AnswerAuthToken, + secret: Option, + } + + let delete = delete + .iter() + .map(DeletableAnswerAuthTokenProperty::to_string) + .collect(); + + let response = self + .0 + .put( + &format!("/api2/extjs/auto-install/tokens/{id}"), + &UpdateToken { + updater, + delete, + regenerate_secret, + }, + ) + .await? + .expect_json::()?; + + Ok((response.data.token, response.data.secret)) + } + + /// Deletes an access token used for authenticating automated installations. + /// + /// # Parameters + /// + /// * `id` - Name of the token to delete. + pub async fn delete_autoinst_auth_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