heroku_rs 0.6.0

Rust bindings for the Heroku API
Documentation
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
//Anything related to PATCH requests for Teams and it's variations goes here.
use super::{Team, TeamApp, TeamMember, TeamPreferences};

use crate::framework::endpoint::{HerokuEndpoint, Method};

/// Team Update
///
/// Update team properties.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#team-update)
///
/// # Example:
///
/// TeamUpdate takes one required parameter, team_id and returns a [`Team`][response].
/// ```rust
/// use heroku_rs::prelude::*;
///#    let api_client = HttpApiClient::create("API_KEY").unwrap();
///
/// let response = api_client.request(
///     &TeamUpdate::new("TEAM_ID")
///         .default(false)
///         .name("new-team-name")
///         .build(),
/// );
///
///match response {
///     Ok(success) => println!("Success: {:#?}", success),
///     Err(e) => println!("Error: {}", e),
///}
//
/// ```
/// See how to create the Heroku [`api_client`][httpApiClientConfig].
///
/// [httpApiClientConfig]: ../../../framework/struct.HttpApiClient.html
/// [response]: ../struct.Team.html
pub struct TeamUpdate<'a> {
    /// team_id is the unique team identifier.
    pub team_id: &'a str,
    /// The parameters to pass to the Heroku API
    pub params: TeamUpdateParams<'a>,
}

#[cfg(feature = "builder")]
impl<'a> TeamUpdate<'a> {
    pub fn new(team_id: &'a str) -> TeamUpdate<'a> {
        TeamUpdate {
            team_id,
            params: TeamUpdateParams {
                default: None,
                name: None,
            },
        }
    }

    /// # default: whether to use this team when none is specified
    pub fn default(&mut self, default: bool) -> &mut Self {
        self.params.default = Some(default);
        self
    }

    /// # name: unique name of team
    pub fn name(&mut self, name: &'a str) -> &mut Self {
        self.params.name = Some(name);
        self
    }

    pub fn build(&self) -> TeamUpdate<'a> {
        TeamUpdate {
            team_id: self.team_id,
            params: TeamUpdateParams {
                default: self.params.default,
                name: self.params.name,
            },
        }
    }
}

/// Update team properties.
///
/// [See Heroku documentation for more information about these optional parameters](https://devcenter.heroku.com/articles/platform-api-reference#team-update-optional-parameters)
#[serde_with::skip_serializing_none]
#[derive(Serialize, Clone, Debug)]
pub struct TeamUpdateParams<'a> {
    /// whether to use this team when none is specified
    pub default: Option<bool>,
    /// unique name of team
    pub name: Option<&'a str>,
}

impl<'a> HerokuEndpoint<Team, (), TeamUpdateParams<'a>> for TeamUpdate<'a> {
    fn method(&self) -> Method {
        Method::Patch
    }
    fn path(&self) -> String {
        format!("teams/{}", self.team_id)
    }
    fn body(&self) -> Option<TeamUpdateParams<'a>> {
        Some(self.params.clone())
    }
}

/// Team App Update Locked
///
/// Lock or unlock a team app.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#team-app-update-locked)
///
/// # Example:
///
/// TeamAppUpdateLocked takes two required parameters, team_id and locked and returns the updated [`Team`][response].
/// ```rust
/// use heroku_rs::prelude::*;
///#    let api_client = HttpApiClient::create("API_KEY").unwrap();
///
/// let locked = true;
/// let response = api_client.request(&TeamAppUpdateLocked::new("TEAM_ID", locked));
///
///match response {
///     Ok(success) => println!("Success: {:#?}", success),
///     Err(e) => println!("Error: {}", e),
///}
//
/// ```
/// See how to create the Heroku [`api_client`][httpApiClientConfig].
///
/// [httpApiClientConfig]: ../../../framework/struct.HttpApiClient.html
/// [response]: ../struct.Team.html
pub struct TeamAppUpdateLocked<'a> {
    /// team_id is the unique team identifier.
    pub team_id: &'a str,
    /// The parameters to pass to the Heroku API
    pub params: TeamAppUpdateLockedParams,
}

#[cfg(feature = "builder")]
impl<'a> TeamAppUpdateLocked<'a> {
    pub fn new(team_id: &'a str, locked: bool) -> TeamAppUpdateLocked<'a> {
        TeamAppUpdateLocked {
            team_id,
            params: TeamAppUpdateLockedParams { locked },
        }
    }
}

/// Update team app properties.
///
/// [See Heroku documentation for more information about these required parameters](https://devcenter.heroku.com/articles/platform-api-reference#team-app-update-locked-required-parameters)
#[derive(Serialize, Clone, Debug)]
pub struct TeamAppUpdateLockedParams {
    /// are other team members forbidden from joining this app.
    pub locked: bool,
}

impl<'a> HerokuEndpoint<Team, (), TeamAppUpdateLockedParams> for TeamAppUpdateLocked<'a> {
    fn method(&self) -> Method {
        Method::Patch
    }
    fn path(&self) -> String {
        format!("teams/apps/{}", self.team_id)
    }
    fn body(&self) -> Option<TeamAppUpdateLockedParams> {
        Some(self.params.clone())
    }
}

/// Team App Transfer to Account or Team
///
/// Transfer an existing team app to another Heroku account or another Heroku Team.
///
/// [See Heroku documentation for more information about the account transfer](https://devcenter.heroku.com/articles/platform-api-reference#team-app-transfer-to-account)
///
/// [See Heroku documentation for more information about the team transfer](https://devcenter.heroku.com/articles/platform-api-reference#team-app-transfer-to-team)
///
/// # Example:
///
/// TeamAppTransfer takes two required parameters, team_id and owner_id and returns the [`TeamApp`][response].
/// ```rust
/// use heroku_rs::prelude::*;
///#    let api_client = HttpApiClient::create("API_KEY").unwrap();
///
/// let response = api_client.request(&TeamAppTransfer::new("TEAM_ID", "OWNER_ID"));
///
///match response {
///     Ok(success) => println!("Success: {:#?}", success),
///     Err(e) => println!("Error: {}", e),
///}
//
/// ```
/// See how to create the Heroku [`api_client`][httpApiClientConfig].
///
/// [httpApiClientConfig]: ../../../framework/struct.HttpApiClient.html
/// [response]: ../struct.TeamApp.html
pub struct TeamAppTransfer<'a> {
    /// team_id is the unique team identifier.
    pub team_id: &'a str,
    /// The parameters to pass to the Heroku API
    pub params: TeamAppTransferParams<'a>,
}

#[cfg(feature = "builder")]
impl<'a> TeamAppTransfer<'a> {
    pub fn new(team_id: &'a str, owner_id: &'a str) -> TeamAppTransfer<'a> {
        TeamAppTransfer {
            team_id: team_id,
            params: TeamAppTransferParams { owner: owner_id },
        }
    }
}

/// Transfer a team app to another account or team
///
/// Note: The distinction between transferring an app to an account is the `owner` field.
/// If you pass an email adress or account identifier it will transfer the app to a account.
/// If you pass the unique name of a team, it will transfer the app to a team.
///
/// [See Heroku documentation for account transferring](https://devcenter.heroku.com/articles/platform-api-reference#team-app-transfer-to-account-required-parameters)
///
/// [See Heroku documentation for team transferring](https://devcenter.heroku.com/articles/platform-api-reference#team-app-transfer-to-team-required-parameters)
#[derive(Serialize, Clone, Debug)]
pub struct TeamAppTransferParams<'a> {
    /// unique email address, identifier of an account or implicit reference to currently authorized user
    /// or unique name of team
    pub owner: &'a str,
}

impl<'a> HerokuEndpoint<TeamApp, (), TeamAppTransferParams<'a>> for TeamAppTransfer<'a> {
    fn method(&self) -> Method {
        Method::Patch
    }
    fn path(&self) -> String {
        format!("teams/apps/{}", self.team_id)
    }
    fn body(&self) -> Option<TeamAppTransferParams<'a>> {
        Some(self.params.clone())
    }
}

/// Team Member Update
///
/// Update a team member.
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#team-member-update)
///
/// # Example:
///
/// TeamMemberUpdate takes three required parameters, team_id email and role and returns the [`TeamMember`][response].
/// ```rust
/// use heroku_rs::prelude::*;
///#    let api_client = HttpApiClient::create("API_KEY").unwrap();
///
/// let response = api_client.request(&TeamMemberUpdate::new("TEAM_ID", "EMAIL", "ROLE"));
///
///match response {
///     Ok(success) => println!("Success: {:#?}", success),
///     Err(e) => println!("Error: {}", e),
///}
//
/// ```
/// See how to create the Heroku [`api_client`][httpApiClientConfig].
///
/// [httpApiClientConfig]: ../../../framework/struct.HttpApiClient.html
/// [response]: ../struct.TeamMember.html
pub struct TeamMemberUpdate<'a> {
    /// unique team identifier
    pub team_id: &'a str,
    /// parameters to pass to Heroku
    pub params: TeamMemberUpdateParams<'a>,
}

#[cfg(feature = "builder")]
impl<'a> TeamMemberUpdate<'a> {
    /// Only required parameters passed
    pub fn new(team_id: &'a str, email: &'a str, role: &'a str) -> TeamMemberUpdate<'a> {
        TeamMemberUpdate {
            team_id,
            params: TeamMemberUpdateParams {
                email: email,
                role: role,
                federated: None,
            },
        }
    }

    /// # federated: whether the user is federated and belongs to an Identity Provider
    pub fn federated(&mut self, federated: bool) -> &mut Self {
        self.params.federated = Some(federated);
        self
    }

    pub fn build(&self) -> TeamMemberUpdate<'a> {
        TeamMemberUpdate {
            team_id: self.team_id,
            params: TeamMemberUpdateParams {
                email: self.params.email,
                role: self.params.role,
                federated: self.params.federated,
            },
        }
    }
}

/// Update team member with parameters
///
/// [See Heroku documentation for more information about these paramters](https://devcenter.heroku.com/articles/platform-api-reference#team-member-update-required-parameters)
#[serde_with::skip_serializing_none]
#[derive(Serialize, Clone, Debug)]
pub struct TeamMemberUpdateParams<'a> {
    /// unique email address
    pub email: &'a str,
    /// Even though marked with `Option`, this parameter is NOT optional.
    /// role in the team
    /// one of:"admin" or "collaborator" or "member" or "owner" or null
    pub role: &'a str,
    /// whether the user is federated and belongs to an Identity Provider
    pub federated: Option<bool>,
}

impl<'a> HerokuEndpoint<TeamMember, (), TeamMemberUpdateParams<'a>> for TeamMemberUpdate<'a> {
    fn method(&self) -> Method {
        Method::Patch
    }
    fn path(&self) -> String {
        format!("teams/{}/members", self.team_id)
    }
    fn body(&self) -> Option<TeamMemberUpdateParams<'a>> {
        Some(self.params.clone())
    }
}

/// Team Preferences Update
///
/// Update Team Preferences
///
/// [See Heroku documentation for more information about this endpoint](https://devcenter.heroku.com/articles/platform-api-reference#team-preferences-update)
///
/// # Example:
///
/// TeamPreferenceUpdate takes one required parameter, id and returns the [`TeamPreferences`][response].
/// ```rust
/// use heroku_rs::prelude::*;
///#    let api_client = HttpApiClient::create("API_KEY").unwrap();
///
/// let response = api_client.request(&TeamPreferenceUpdate::new("ID"));
///
///match response {
///     Ok(success) => println!("Success: {:#?}", success),
///     Err(e) => println!("Error: {}", e),
///}
//
/// ```
/// See how to create the Heroku [`api_client`][httpApiClientConfig].
///
/// [httpApiClientConfig]: ../../../framework/struct.HttpApiClient.html
/// [response]: ../struct.TeamPreferences.html
pub struct TeamPreferenceUpdate<'a> {
    /// unique identifier
    pub id: &'a str,
    /// parameters to pass to Heroku
    pub params: TeamPreferenceUpdateParams,
}

#[cfg(feature = "builder")]
impl<'a> TeamPreferenceUpdate<'a> {
    pub fn new(id: &'a str) -> TeamPreferenceUpdate<'a> {
        TeamPreferenceUpdate {
            id,
            params: TeamPreferenceUpdateParams {
                whitelisting_enabled: None,
            },
        }
    }

    /// # whitelisting_enabled: Whether whitelisting rules should be applied to add-on installations
    pub fn whitelisting_enabled(&mut self, whitelisting_enabled: bool) -> &mut Self {
        self.params.whitelisting_enabled = Some(whitelisting_enabled);
        self
    }

    pub fn build(&self) -> TeamPreferenceUpdate<'a> {
        TeamPreferenceUpdate {
            id: self.id,
            params: TeamPreferenceUpdateParams {
                whitelisting_enabled: self.params.whitelisting_enabled,
            },
        }
    }
}

/// Update team preference with parameters
///
/// [See Heroku documentation for more information about these paramters](https://devcenter.heroku.com/articles/platform-api-reference#team-preferences-update-optional-parameters)
#[derive(Serialize, Clone, Debug)]
pub struct TeamPreferenceUpdateParams {
    /// Whether whitelisting rules should be applied to add-on installations. [Nullable]
    #[serde(rename = "whitelisting-enabled")]
    pub whitelisting_enabled: Option<bool>,
}

impl<'a> HerokuEndpoint<TeamPreferences, (), TeamPreferenceUpdateParams> for TeamPreferenceUpdate<'a> {
    fn method(&self) -> Method {
        Method::Patch
    }
    fn path(&self) -> String {
        format!("teams/{}/preferences", self.id)
    }
    fn body(&self) -> Option<TeamPreferenceUpdateParams> {
        Some(self.params.clone())
    }
}