use super::WorkersSecret;
use crate::framework::endpoint::{EndpointSpec, Method, RequestBody};
use crate::framework::response::ApiSuccess;
use serde::Serialize;
#[derive(Debug)]
pub struct CreateSecret<'a> {
pub account_identifier: &'a str,
pub script_name: &'a str,
pub params: CreateSecretParams,
}
impl EndpointSpec for CreateSecret<'_> {
type JsonResponse = WorkersSecret;
type ResponseType = ApiSuccess<Self::JsonResponse>;
fn method(&self) -> Method {
Method::PUT
}
fn path(&self) -> String {
format!(
"accounts/{}/workers/scripts/{}/secrets",
self.account_identifier, self.script_name
)
}
#[inline]
fn body(&self) -> Option<RequestBody> {
let body = serde_json::to_string(&self.params).unwrap();
Some(RequestBody::Json(body))
}
}
#[derive(Serialize, Clone, Debug)]
pub struct CreateSecretParams {
pub name: String,
pub text: String,
#[serde(rename = "type")]
pub secret_type: String,
}