1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use super::WorkersSecret;
use crate::framework::endpoint::{Endpoint, Method};
#[derive(Debug)]
pub struct CreateSecret<'a> {
pub account_identifier: &'a str,
pub script_name: &'a str,
pub params: CreateSecretParams,
}
impl<'a> Endpoint<WorkersSecret, (), CreateSecretParams> for CreateSecret<'a> {
fn method(&self) -> Method {
Method::Put
}
fn path(&self) -> String {
format!(
"accounts/{}/workers/scripts/{}/secrets",
self.account_identifier, self.script_name
)
}
fn body(&self) -> Option<CreateSecretParams> {
Some(self.params.clone())
}
}
#[derive(Serialize, Clone, Debug)]
pub struct CreateSecretParams {
pub name: String,
pub text: String,
#[serde(rename = "type")]
pub secret_type: String,
}