azure-lite-rs 0.1.1

Lightweight HTTP client for Azure 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 Azure Cost Management API (v1).
//!
//! Auto-generated from the Azure ARM REST Specification.
//! **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/cost.rs` wraps
//! these with ergonomic builders, operation polling, etc.

use crate::types::cost::*;
use crate::{AzureHttpClient, Result};
use urlencoding::encode;

/// Raw HTTP operations for the Azure Cost Management API.
///
/// These methods encode the correct URL paths, HTTP methods, and
/// parameter ordering from the Azure ARM REST Specification.
/// They are `pub(crate)` — use the ergonomic wrappers in
/// [`super::cost::CostClient`] instead.
pub struct CostOps<'a> {
    pub(crate) client: &'a AzureHttpClient,
}

impl<'a> CostOps<'a> {
    pub(crate) fn new(client: &'a AzureHttpClient) -> 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://management.azure.com"
    }

    /// Lists all budgets for the subscription.
    ///
    /// **Azure API**: `GET /subscriptions/{subscriptionId}/providers/Microsoft.Consumption/budgets`
    ///
    /// # Path Parameters
    /// - `subscriptionId` —  *(required)*
    ///
    /// # Response
    /// [`BudgetListResult`]
    #[allow(dead_code)]
    pub(crate) async fn list_budgets(&self, subscription_id: &str) -> Result<BudgetListResult> {
        let url = format!(
            "{}/subscriptions/{}/providers/Microsoft.Consumption/budgets",
            self.base_url(),
            encode(subscription_id),
        );
        let sep = if url.contains('?') { "&" } else { "?" };
        let url = format!("{}{}api-version=2023-11-01", url, sep);
        let response = self.client.get(&url).await?;
        let response = response.error_for_status().await?;
        let response_bytes =
            response
                .bytes()
                .await
                .map_err(|e| crate::AzureError::InvalidResponse {
                    message: format!("Failed to read list_budgets response: {e}"),
                    body: None,
                })?;
        serde_json::from_slice(&response_bytes).map_err(|e| crate::AzureError::InvalidResponse {
            message: format!("Failed to parse list_budgets response: {e}"),
            body: Some(String::from_utf8_lossy(&response_bytes).to_string()),
        })
    }

    /// Gets the budget for the subscription by budget name.
    ///
    /// **Azure API**: `GET /subscriptions/{subscriptionId}/providers/Microsoft.Consumption/budgets/{budgetName}`
    ///
    /// # Path Parameters
    /// - `subscriptionId` —  *(required)*
    /// - `budgetName` —  *(required)*
    ///
    /// # Response
    /// [`Budget`]
    #[allow(dead_code)]
    pub(crate) async fn get_budget(
        &self,
        subscription_id: &str,
        budget_name: &str,
    ) -> Result<Budget> {
        let url = format!(
            "{}/subscriptions/{}/providers/Microsoft.Consumption/budgets/{}",
            self.base_url(),
            encode(subscription_id),
            encode(budget_name),
        );
        let sep = if url.contains('?') { "&" } else { "?" };
        let url = format!("{}{}api-version=2023-11-01", url, sep);
        let response = self.client.get(&url).await?;
        let response = response.error_for_status().await?;
        let response_bytes =
            response
                .bytes()
                .await
                .map_err(|e| crate::AzureError::InvalidResponse {
                    message: format!("Failed to read get_budget response: {e}"),
                    body: None,
                })?;
        serde_json::from_slice(&response_bytes).map_err(|e| crate::AzureError::InvalidResponse {
            message: format!("Failed to parse get_budget response: {e}"),
            body: Some(String::from_utf8_lossy(&response_bytes).to_string()),
        })
    }

    /// The operation to create or update a budget.
    ///
    /// **Azure API**: `PUT /subscriptions/{subscriptionId}/providers/Microsoft.Consumption/budgets/{budgetName}`
    ///
    /// # Path Parameters
    /// - `subscriptionId` —  *(required)*
    /// - `budgetName` —  *(required)*
    ///
    /// # Request Body
    /// [`BudgetCreateRequest`]
    ///
    /// # Response
    /// [`Budget`]
    #[allow(dead_code)]
    pub(crate) async fn create_budget(
        &self,
        subscription_id: &str,
        budget_name: &str,
        body: &BudgetCreateRequest,
    ) -> Result<Budget> {
        let url = format!(
            "{}/subscriptions/{}/providers/Microsoft.Consumption/budgets/{}",
            self.base_url(),
            encode(subscription_id),
            encode(budget_name),
        );
        let sep = if url.contains('?') { "&" } else { "?" };
        let url = format!("{}{}api-version=2023-11-01", url, sep);
        let body_bytes =
            serde_json::to_vec(body).map_err(|e| crate::AzureError::InvalidResponse {
                message: format!("Failed to serialize create_budget request: {e}"),
                body: None,
            })?;
        let response = self.client.put(&url, &body_bytes).await?;
        let response = response.error_for_status().await?;
        let response_bytes =
            response
                .bytes()
                .await
                .map_err(|e| crate::AzureError::InvalidResponse {
                    message: format!("Failed to read create_budget response: {e}"),
                    body: None,
                })?;
        serde_json::from_slice(&response_bytes).map_err(|e| crate::AzureError::InvalidResponse {
            message: format!("Failed to parse create_budget response: {e}"),
            body: Some(String::from_utf8_lossy(&response_bytes).to_string()),
        })
    }

    /// The operation to delete a budget.
    ///
    /// **Azure API**: `DELETE /subscriptions/{subscriptionId}/providers/Microsoft.Consumption/budgets/{budgetName}`
    ///
    /// # Path Parameters
    /// - `subscriptionId` —  *(required)*
    /// - `budgetName` —  *(required)*
    #[allow(dead_code)]
    pub(crate) async fn delete_budget(
        &self,
        subscription_id: &str,
        budget_name: &str,
    ) -> Result<()> {
        let url = format!(
            "{}/subscriptions/{}/providers/Microsoft.Consumption/budgets/{}",
            self.base_url(),
            encode(subscription_id),
            encode(budget_name),
        );
        let sep = if url.contains('?') { "&" } else { "?" };
        let url = format!("{}{}api-version=2023-11-01", url, sep);
        let response = self.client.delete(&url).await?;
        response.error_for_status().await?;
        Ok(())
    }

    /// Query the usage data for subscription scope.
    ///
    /// **Azure API**: `POST /subscriptions/{subscriptionId}/providers/Microsoft.CostManagement/query`
    ///
    /// # Path Parameters
    /// - `subscriptionId` —  *(required)*
    ///
    /// # Request Body
    /// [`QueryDefinition`]
    ///
    /// # Response
    /// [`QueryResult`]
    #[allow(dead_code)]
    pub(crate) async fn list_cost_by_resource(
        &self,
        subscription_id: &str,
        body: &QueryDefinition,
    ) -> Result<QueryResult> {
        let url = format!(
            "{}/subscriptions/{}/providers/Microsoft.CostManagement/query",
            self.base_url(),
            encode(subscription_id),
        );
        let sep = if url.contains('?') { "&" } else { "?" };
        let url = format!("{}{}api-version=2023-11-01", url, sep);
        let body_bytes =
            serde_json::to_vec(body).map_err(|e| crate::AzureError::InvalidResponse {
                message: format!("Failed to serialize list_cost_by_resource request: {e}"),
                body: None,
            })?;
        let response = self.client.post(&url, &body_bytes).await?;
        let response = response.error_for_status().await?;
        let response_bytes =
            response
                .bytes()
                .await
                .map_err(|e| crate::AzureError::InvalidResponse {
                    message: format!("Failed to read list_cost_by_resource response: {e}"),
                    body: None,
                })?;
        serde_json::from_slice(&response_bytes).map_err(|e| crate::AzureError::InvalidResponse {
            message: format!("Failed to parse list_cost_by_resource response: {e}"),
            body: Some(String::from_utf8_lossy(&response_bytes).to_string()),
        })
    }

    /// Lists the forecast charges for subscription scope.
    ///
    /// **Azure API**: `POST /subscriptions/{subscriptionId}/providers/Microsoft.CostManagement/forecast`
    ///
    /// # Path Parameters
    /// - `subscriptionId` —  *(required)*
    ///
    /// # Request Body
    /// [`ForecastDefinition`]
    ///
    /// # Response
    /// [`QueryResult`]
    #[allow(dead_code)]
    pub(crate) async fn get_forecast(
        &self,
        subscription_id: &str,
        body: &ForecastDefinition,
    ) -> Result<QueryResult> {
        let url = format!(
            "{}/subscriptions/{}/providers/Microsoft.CostManagement/forecast",
            self.base_url(),
            encode(subscription_id),
        );
        let sep = if url.contains('?') { "&" } else { "?" };
        let url = format!("{}{}api-version=2023-11-01", url, sep);
        let body_bytes =
            serde_json::to_vec(body).map_err(|e| crate::AzureError::InvalidResponse {
                message: format!("Failed to serialize get_forecast request: {e}"),
                body: None,
            })?;
        let response = self.client.post(&url, &body_bytes).await?;
        let response = response.error_for_status().await?;
        let response_bytes =
            response
                .bytes()
                .await
                .map_err(|e| crate::AzureError::InvalidResponse {
                    message: format!("Failed to read get_forecast response: {e}"),
                    body: None,
                })?;
        serde_json::from_slice(&response_bytes).map_err(|e| crate::AzureError::InvalidResponse {
            message: format!("Failed to parse get_forecast response: {e}"),
            body: Some(String::from_utf8_lossy(&response_bytes).to_string()),
        })
    }

    /// Lists the usage details for the subscription.
    ///
    /// **Azure API**: `GET /subscriptions/{subscriptionId}/providers/Microsoft.Consumption/usageDetails`
    ///
    /// # Path Parameters
    /// - `subscriptionId` —  *(required)*
    ///
    /// # Response
    /// [`UsageDetailsListResult`]
    #[allow(dead_code)]
    pub(crate) async fn get_usage_details(
        &self,
        subscription_id: &str,
    ) -> Result<UsageDetailsListResult> {
        let url = format!(
            "{}/subscriptions/{}/providers/Microsoft.Consumption/usageDetails",
            self.base_url(),
            encode(subscription_id),
        );
        let sep = if url.contains('?') { "&" } else { "?" };
        let url = format!("{}{}api-version=2023-11-01", url, sep);
        let response = self.client.get(&url).await?;
        let response = response.error_for_status().await?;
        let response_bytes =
            response
                .bytes()
                .await
                .map_err(|e| crate::AzureError::InvalidResponse {
                    message: format!("Failed to read get_usage_details response: {e}"),
                    body: None,
                })?;
        serde_json::from_slice(&response_bytes).map_err(|e| crate::AzureError::InvalidResponse {
            message: format!("Failed to parse get_usage_details response: {e}"),
            body: Some(String::from_utf8_lossy(&response_bytes).to_string()),
        })
    }
}

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

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

        mock.expect_get(
            "/subscriptions/test-subscriptionId/providers/Microsoft.Consumption/budgets",
        )
        .returning_json(serde_json::to_value(BudgetListResult::fixture()).unwrap());

        let client = crate::AzureHttpClient::from_mock(mock);
        let ops = CostOps::new(&client);

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

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

        mock.expect_get("/subscriptions/test-subscriptionId/providers/Microsoft.Consumption/budgets/test-budgetName")
            .returning_json(serde_json::to_value(Budget::fixture()).unwrap());

        let client = crate::AzureHttpClient::from_mock(mock);
        let ops = CostOps::new(&client);

        let result = ops
            .get_budget("test-subscriptionId", "test-budgetName")
            .await;
        assert!(result.is_ok());
    }

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

        mock.expect_put("/subscriptions/test-subscriptionId/providers/Microsoft.Consumption/budgets/test-budgetName")
            .returning_json(serde_json::to_value(Budget::fixture()).unwrap());

        let client = crate::AzureHttpClient::from_mock(mock);
        let ops = CostOps::new(&client);

        let body = BudgetCreateRequest::fixture();
        let result = ops
            .create_budget("test-subscriptionId", "test-budgetName", &body)
            .await;
        assert!(result.is_ok());
    }

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

        mock.expect_delete("/subscriptions/test-subscriptionId/providers/Microsoft.Consumption/budgets/test-budgetName")
            .returning_json(serde_json::json!({}));

        let client = crate::AzureHttpClient::from_mock(mock);
        let ops = CostOps::new(&client);

        let result = ops
            .delete_budget("test-subscriptionId", "test-budgetName")
            .await;
        assert!(result.is_ok());
    }

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

        mock.expect_post(
            "/subscriptions/test-subscriptionId/providers/Microsoft.CostManagement/query",
        )
        .returning_json(serde_json::to_value(QueryResult::fixture()).unwrap());

        let client = crate::AzureHttpClient::from_mock(mock);
        let ops = CostOps::new(&client);

        let body = QueryDefinition::fixture();
        let result = ops
            .list_cost_by_resource("test-subscriptionId", &body)
            .await;
        assert!(result.is_ok());
    }

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

        mock.expect_post(
            "/subscriptions/test-subscriptionId/providers/Microsoft.CostManagement/forecast",
        )
        .returning_json(serde_json::to_value(QueryResult::fixture()).unwrap());

        let client = crate::AzureHttpClient::from_mock(mock);
        let ops = CostOps::new(&client);

        let body = ForecastDefinition::fixture();
        let result = ops.get_forecast("test-subscriptionId", &body).await;
        assert!(result.is_ok());
    }

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

        mock.expect_get(
            "/subscriptions/test-subscriptionId/providers/Microsoft.Consumption/usageDetails",
        )
        .returning_json(serde_json::to_value(UsageDetailsListResult::fixture()).unwrap());

        let client = crate::AzureHttpClient::from_mock(mock);
        let ops = CostOps::new(&client);

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