aws-lite-rs 0.1.1

Lightweight HTTP client for AWS APIs
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
//! Operation contracts for the Amazon Route 53 API (v1).
//!
//! Auto-generated from the AWS Botocore Model.
//! **Do not edit manually** — modify the manifest and re-run codegen.
//!
//! These are the raw HTTP operations with correct URLs, methods,
//! and parameter ordering. The hand-written `api/route53.rs` wraps
//! these with ergonomic builders, operation polling, etc.

use crate::types::route53::*;
use crate::{AwsHttpClient, Result};
use urlencoding::encode;

/// Raw HTTP operations for the Amazon Route 53 API.
///
/// These methods encode the correct URL paths, HTTP methods, and
/// parameter ordering from the AWS Botocore Model.
/// They are `pub(crate)` — use the ergonomic wrappers in
/// [`super::route53::Route53Client`] instead.
pub struct Route53Ops<'a> {
    pub(crate) client: &'a AwsHttpClient,
}

impl<'a> Route53Ops<'a> {
    pub(crate) fn new(client: &'a AwsHttpClient) -> Self {
        Self { client }
    }

    fn base_url(&self) -> &str {
        #[cfg(any(test, feature = "test-support"))]
        {
            if let Some(ref base) = self.client.base_url {
                return base.trim_end_matches('/');
            }
        }
        "https://route53.amazonaws.com"
    }

    /// Retrieves a list of the public and private hosted zones associated with the current AWS
    /// account.
    ///
    /// **AWS API**: `GET /2013-04-01/hostedzone`
    ///
    /// # Response
    /// [`ListHostedZonesResponse`]
    #[allow(dead_code)]
    pub(crate) async fn list_hosted_zones(&self) -> Result<ListHostedZonesResponse> {
        let url = format!("{}/2013-04-01/hostedzone", self.base_url(),);
        let response = self.client.get(&url, "route53").await?;
        let response = response.error_for_status("xml").await?;
        let response_bytes =
            response
                .bytes()
                .await
                .map_err(|e| crate::AwsError::InvalidResponse {
                    message: format!("Failed to read list_hosted_zones response: {e}"),
                    body: None,
                })?;
        let body_text =
            std::str::from_utf8(&response_bytes).map_err(|e| crate::AwsError::InvalidResponse {
                message: format!("Invalid UTF-8 in list_hosted_zones response: {e}"),
                body: None,
            })?;
        crate::xml::parse_rest_xml_response::<ListHostedZonesResponse>(body_text).map_err(|e| {
            crate::AwsError::InvalidResponse {
                message: format!("Failed to parse list_hosted_zones XML response: {e}"),
                body: Some(body_text.to_string()),
            }
        })
    }

    /// Lists the resource record sets in a specified hosted zone.
    ///
    /// **AWS API**: `GET /2013-04-01/hostedzone/{Id}/rrset`
    ///
    /// # Path Parameters
    /// - `Id` —  *(required)*
    ///
    /// # Response
    /// [`ListResourceRecordSetsResponse`]
    #[allow(dead_code)]
    pub(crate) async fn list_resource_record_sets(
        &self,
        id: &str,
    ) -> Result<ListResourceRecordSetsResponse> {
        let url = format!(
            "{}/2013-04-01/hostedzone/{}/rrset",
            self.base_url(),
            encode(id),
        );
        let response = self.client.get(&url, "route53").await?;
        let response = response.error_for_status("xml").await?;
        let response_bytes =
            response
                .bytes()
                .await
                .map_err(|e| crate::AwsError::InvalidResponse {
                    message: format!("Failed to read list_resource_record_sets response: {e}"),
                    body: None,
                })?;
        let body_text =
            std::str::from_utf8(&response_bytes).map_err(|e| crate::AwsError::InvalidResponse {
                message: format!("Invalid UTF-8 in list_resource_record_sets response: {e}"),
                body: None,
            })?;
        crate::xml::parse_rest_xml_response::<ListResourceRecordSetsResponse>(body_text).map_err(
            |e| crate::AwsError::InvalidResponse {
                message: format!("Failed to parse list_resource_record_sets XML response: {e}"),
                body: Some(body_text.to_string()),
            },
        )
    }

    /// Retrieve a list of the health checks associated with the current AWS account.
    ///
    /// **AWS API**: `GET /2013-04-01/healthcheck`
    ///
    /// # Response
    /// [`ListHealthChecksResponse`]
    #[allow(dead_code)]
    pub(crate) async fn list_health_checks(&self) -> Result<ListHealthChecksResponse> {
        let url = format!("{}/2013-04-01/healthcheck", self.base_url(),);
        let response = self.client.get(&url, "route53").await?;
        let response = response.error_for_status("xml").await?;
        let response_bytes =
            response
                .bytes()
                .await
                .map_err(|e| crate::AwsError::InvalidResponse {
                    message: format!("Failed to read list_health_checks response: {e}"),
                    body: None,
                })?;
        let body_text =
            std::str::from_utf8(&response_bytes).map_err(|e| crate::AwsError::InvalidResponse {
                message: format!("Invalid UTF-8 in list_health_checks response: {e}"),
                body: None,
            })?;
        crate::xml::parse_rest_xml_response::<ListHealthChecksResponse>(body_text).map_err(|e| {
            crate::AwsError::InvalidResponse {
                message: format!("Failed to parse list_health_checks XML response: {e}"),
                body: Some(body_text.to_string()),
            }
        })
    }

    /// Gets status of a health check based on the most recent checker observations.
    ///
    /// **AWS API**: `GET /2013-04-01/healthcheck/{HealthCheckId}/status`
    ///
    /// # Path Parameters
    /// - `HealthCheckId` —  *(required)*
    ///
    /// # Response
    /// [`GetHealthCheckStatusResponse`]
    #[allow(dead_code)]
    pub(crate) async fn get_health_check_status(
        &self,
        health_check_id: &str,
    ) -> Result<GetHealthCheckStatusResponse> {
        let url = format!(
            "{}/2013-04-01/healthcheck/{}/status",
            self.base_url(),
            encode(health_check_id),
        );
        let response = self.client.get(&url, "route53").await?;
        let response = response.error_for_status("xml").await?;
        let response_bytes =
            response
                .bytes()
                .await
                .map_err(|e| crate::AwsError::InvalidResponse {
                    message: format!("Failed to read get_health_check_status response: {e}"),
                    body: None,
                })?;
        let body_text =
            std::str::from_utf8(&response_bytes).map_err(|e| crate::AwsError::InvalidResponse {
                message: format!("Invalid UTF-8 in get_health_check_status response: {e}"),
                body: None,
            })?;
        crate::xml::parse_rest_xml_response::<GetHealthCheckStatusResponse>(body_text).map_err(
            |e| crate::AwsError::InvalidResponse {
                message: format!("Failed to parse get_health_check_status XML response: {e}"),
                body: Some(body_text.to_string()),
            },
        )
    }

    /// Creates a new health check.
    ///
    /// **AWS API**: `POST /2013-04-01/healthcheck`
    ///
    /// # Request Body
    /// [`CreateHealthCheckRequest`]
    ///
    /// # Response
    /// [`CreateHealthCheckResponse`]
    #[allow(dead_code)]
    pub(crate) async fn create_health_check(
        &self,
        body: &CreateHealthCheckRequest,
    ) -> Result<CreateHealthCheckResponse> {
        let url = format!("{}/2013-04-01/healthcheck", self.base_url(),);
        let body_xml =
            quick_xml::se::to_string(body).map_err(|e| crate::AwsError::InvalidResponse {
                message: format!("Failed to serialize create_health_check request to XML: {e}"),
                body: None,
            })?;
        // Inject XML namespace required by route53.
        let body_xml = crate::xml::inject_xml_namespace(
            &body_xml,
            "https://route53.amazonaws.com/doc/2013-04-01/",
        );
        let response = self
            .client
            .post(&url, "route53", body_xml.as_bytes(), "application/xml")
            .await?;
        let response = response.error_for_status("xml").await?;
        let response_bytes =
            response
                .bytes()
                .await
                .map_err(|e| crate::AwsError::InvalidResponse {
                    message: format!("Failed to read create_health_check response: {e}"),
                    body: None,
                })?;
        let body_text =
            std::str::from_utf8(&response_bytes).map_err(|e| crate::AwsError::InvalidResponse {
                message: format!("Invalid UTF-8 in create_health_check response: {e}"),
                body: None,
            })?;
        crate::xml::parse_rest_xml_response::<CreateHealthCheckResponse>(body_text).map_err(|e| {
            crate::AwsError::InvalidResponse {
                message: format!("Failed to parse create_health_check XML response: {e}"),
                body: Some(body_text.to_string()),
            }
        })
    }

    /// Deletes a health check.
    ///
    /// **AWS API**: `DELETE /2013-04-01/healthcheck/{HealthCheckId}`
    ///
    /// # Path Parameters
    /// - `HealthCheckId` —  *(required)*
    #[allow(dead_code)]
    pub(crate) async fn delete_health_check(&self, health_check_id: &str) -> Result<()> {
        let url = format!(
            "{}/2013-04-01/healthcheck/{}",
            self.base_url(),
            encode(health_check_id),
        );
        let response = self.client.delete(&url, "route53").await?;
        response.error_for_status("xml").await?;
        Ok(())
    }

    /// Creates, changes, or deletes a resource record set.
    ///
    /// **AWS API**: `POST /2013-04-01/hostedzone/{Id}/rrset/`
    ///
    /// # Path Parameters
    /// - `Id` —  *(required)*
    ///
    /// # Request Body
    /// [`ChangeResourceRecordSetsRequest`]
    ///
    /// # Response
    /// [`ChangeResourceRecordSetsResponse`]
    #[allow(dead_code)]
    pub(crate) async fn change_resource_record_sets(
        &self,
        id: &str,
        body: &ChangeResourceRecordSetsRequest,
    ) -> Result<ChangeResourceRecordSetsResponse> {
        let url = format!(
            "{}/2013-04-01/hostedzone/{}/rrset/",
            self.base_url(),
            encode(id),
        );
        let body_xml =
            quick_xml::se::to_string(body).map_err(|e| crate::AwsError::InvalidResponse {
                message: format!(
                    "Failed to serialize change_resource_record_sets request to XML: {e}"
                ),
                body: None,
            })?;
        // Inject XML namespace required by route53.
        let body_xml = crate::xml::inject_xml_namespace(
            &body_xml,
            "https://route53.amazonaws.com/doc/2013-04-01/",
        );
        let response = self
            .client
            .post(&url, "route53", body_xml.as_bytes(), "application/xml")
            .await?;
        let response = response.error_for_status("xml").await?;
        let response_bytes =
            response
                .bytes()
                .await
                .map_err(|e| crate::AwsError::InvalidResponse {
                    message: format!("Failed to read change_resource_record_sets response: {e}"),
                    body: None,
                })?;
        let body_text =
            std::str::from_utf8(&response_bytes).map_err(|e| crate::AwsError::InvalidResponse {
                message: format!("Invalid UTF-8 in change_resource_record_sets response: {e}"),
                body: None,
            })?;
        crate::xml::parse_rest_xml_response::<ChangeResourceRecordSetsResponse>(body_text).map_err(
            |e| crate::AwsError::InvalidResponse {
                message: format!("Failed to parse change_resource_record_sets XML response: {e}"),
                body: Some(body_text.to_string()),
            },
        )
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[tokio::test]
    async fn test_list_hosted_zones() {
        let mut mock = crate::MockClient::new();

        mock.expect_get("/2013-04-01/hostedzone").returning_bytes({
            let fixture = ListHostedZonesResponse::fixture();
            quick_xml::se::to_string(&fixture).unwrap().into_bytes()
        });

        let client = crate::AwsHttpClient::from_mock(mock);
        let ops = Route53Ops::new(&client);

        let result = ops.list_hosted_zones().await;
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_list_resource_record_sets() {
        let mut mock = crate::MockClient::new();

        mock.expect_get("/2013-04-01/hostedzone/test-Id/rrset")
            .returning_bytes({
                let fixture = ListResourceRecordSetsResponse::fixture();
                quick_xml::se::to_string(&fixture).unwrap().into_bytes()
            });

        let client = crate::AwsHttpClient::from_mock(mock);
        let ops = Route53Ops::new(&client);

        let result = ops.list_resource_record_sets("test-Id").await;
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_list_health_checks() {
        let mut mock = crate::MockClient::new();

        mock.expect_get("/2013-04-01/healthcheck").returning_bytes({
            let fixture = ListHealthChecksResponse::fixture();
            quick_xml::se::to_string(&fixture).unwrap().into_bytes()
        });

        let client = crate::AwsHttpClient::from_mock(mock);
        let ops = Route53Ops::new(&client);

        let result = ops.list_health_checks().await;
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_get_health_check_status() {
        let mut mock = crate::MockClient::new();

        mock.expect_get("/2013-04-01/healthcheck/test-HealthCheckId/status")
            .returning_bytes({
                let fixture = GetHealthCheckStatusResponse::fixture();
                quick_xml::se::to_string(&fixture).unwrap().into_bytes()
            });

        let client = crate::AwsHttpClient::from_mock(mock);
        let ops = Route53Ops::new(&client);

        let result = ops.get_health_check_status("test-HealthCheckId").await;
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_create_health_check() {
        let mut mock = crate::MockClient::new();

        mock.expect_post("/2013-04-01/healthcheck")
            .returning_bytes({
                let fixture = CreateHealthCheckResponse::fixture();
                quick_xml::se::to_string(&fixture).unwrap().into_bytes()
            });

        let client = crate::AwsHttpClient::from_mock(mock);
        let ops = Route53Ops::new(&client);

        let body = CreateHealthCheckRequest::fixture();
        let result = ops.create_health_check(&body).await;
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_delete_health_check() {
        let mut mock = crate::MockClient::new();

        mock.expect_delete("/2013-04-01/healthcheck/test-HealthCheckId")
            .returning_bytes(vec![]);

        let client = crate::AwsHttpClient::from_mock(mock);
        let ops = Route53Ops::new(&client);

        let result = ops.delete_health_check("test-HealthCheckId").await;
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_change_resource_record_sets() {
        let mut mock = crate::MockClient::new();

        mock.expect_post("/2013-04-01/hostedzone/test-Id/rrset/")
            .returning_bytes({
                let fixture = ChangeResourceRecordSetsResponse::fixture();
                quick_xml::se::to_string(&fixture).unwrap().into_bytes()
            });

        let client = crate::AwsHttpClient::from_mock(mock);
        let ops = Route53Ops::new(&client);

        let body = ChangeResourceRecordSetsRequest::fixture();
        let result = ops.change_resource_record_sets("test-Id", &body).await;
        assert!(result.is_ok());
    }
}