Skip to content

Commit c50dc16

Browse files
author
github-actions
committed
Generated v4.9.0
1 parent 6450b54 commit c50dc16

File tree

106 files changed

+2941
-48
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+2941
-48
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [v4.9.0](https://github.com/fastly/fastly-rust/releases/tag/release/v4.9.0) (2024-08-04)
4+
5+
**Enhancements:**
6+
7+
- feat(observability): Adds new Observability Custom Dashboards API
8+
- feat(billing-invoices): Adds month-to-date invoice information
9+
- feat(billing-usage-metrics): Adds information on service-level usage.
10+
- feat(tls): Adds an endpoint to get a TLS certificate blob (Limited Availability)
11+
- feat(stats): Add `origin_offload` metric
12+
313
## [v4.8.0](https://github.com/fastly/fastly-rust/releases/tag/release/v4.8.0) (2024-07-01)
414

515
**Bug fixes:**

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fastly-api"
3-
version = "4.8.0"
3+
version = "4.9.0"
44
authors = ["Fastly <[email protected]>"]
55
edition = "2021"
66
description = "Fastly API client"

README.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Rust 2021 Edition
1515
Add the following to `Cargo.toml` under `[dependencies]`:
1616

1717
```toml
18-
fastly-api = "4.8.0"
18+
fastly-api = "4.9.0"
1919
```
2020

2121
## Usage
@@ -116,7 +116,10 @@ Class | Method | Description
116116
*BillingAddressApi* | [**get_billing_addr**](docs/BillingAddressApi.md#get_billing_addr) | Get a billing address
117117
*BillingAddressApi* | [**update_billing_addr**](docs/BillingAddressApi.md#update_billing_addr) | Update a billing address
118118
*BillingInvoicesApi* | [**get_invoice_by_invoice_id**](docs/BillingInvoicesApi.md#get_invoice_by_invoice_id) | Get invoice by ID.
119+
*BillingInvoicesApi* | [**get_month_to_date_invoice**](docs/BillingInvoicesApi.md#get_month_to_date_invoice) | Get month-to-date invoice.
119120
*BillingInvoicesApi* | [**list_invoices**](docs/BillingInvoicesApi.md#list_invoices) | List of invoices.
121+
*BillingUsageMetricsApi* | [**get_service_level_usage**](docs/BillingUsageMetricsApi.md#get_service_level_usage) | Retrieve service-level usage metrics for a product.
122+
*BillingUsageMetricsApi* | [**get_service_level_usage_types**](docs/BillingUsageMetricsApi.md#get_service_level_usage_types) | Retrieve product usage types for a customer.
120123
*CacheSettingsApi* | [**create_cache_settings**](docs/CacheSettingsApi.md#create_cache_settings) | Create a cache settings object
121124
*CacheSettingsApi* | [**delete_cache_settings**](docs/CacheSettingsApi.md#delete_cache_settings) | Delete a cache settings object
122125
*CacheSettingsApi* | [**get_cache_settings**](docs/CacheSettingsApi.md#get_cache_settings) | Get a cache settings object
@@ -417,6 +420,11 @@ Class | Method | Description
417420
*MutualAuthenticationApi* | [**get_mutual_authentication**](docs/MutualAuthenticationApi.md#get_mutual_authentication) | Get a Mutual Authentication
418421
*MutualAuthenticationApi* | [**list_mutual_authentications**](docs/MutualAuthenticationApi.md#list_mutual_authentications) | List Mutual Authentications
419422
*MutualAuthenticationApi* | [**patch_mutual_authentication**](docs/MutualAuthenticationApi.md#patch_mutual_authentication) | Update a Mutual Authentication
423+
*ObservabilityCustomDashboardsApi* | [**create_dashboard**](docs/ObservabilityCustomDashboardsApi.md#create_dashboard) | Create a new dashboard
424+
*ObservabilityCustomDashboardsApi* | [**delete_dashboard**](docs/ObservabilityCustomDashboardsApi.md#delete_dashboard) | Delete an existing dashboard
425+
*ObservabilityCustomDashboardsApi* | [**get_dashboard**](docs/ObservabilityCustomDashboardsApi.md#get_dashboard) | Retrieve a dashboard by ID
426+
*ObservabilityCustomDashboardsApi* | [**list_dashboards**](docs/ObservabilityCustomDashboardsApi.md#list_dashboards) | List all custom dashboards
427+
*ObservabilityCustomDashboardsApi* | [**update_dashboard**](docs/ObservabilityCustomDashboardsApi.md#update_dashboard) | Update an existing dashboard
420428
*OriginInspectorHistoricalApi* | [**get_origin_inspector_historical**](docs/OriginInspectorHistoricalApi.md#get_origin_inspector_historical) | Get historical origin data for a service
421429
*OriginInspectorRealtimeApi* | [**get_origin_inspector_last120_seconds**](docs/OriginInspectorRealtimeApi.md#get_origin_inspector_last120_seconds) | Get real-time origin data for the last 120 seconds
422430
*OriginInspectorRealtimeApi* | [**get_origin_inspector_last_max_entries**](docs/OriginInspectorRealtimeApi.md#get_origin_inspector_last_max_entries) | Get a limited number of real-time origin data entries
@@ -518,6 +526,7 @@ Class | Method | Description
518526
*TlsCertificatesApi* | [**create_tls_cert**](docs/TlsCertificatesApi.md#create_tls_cert) | Create a TLS certificate
519527
*TlsCertificatesApi* | [**delete_tls_cert**](docs/TlsCertificatesApi.md#delete_tls_cert) | Delete a TLS certificate
520528
*TlsCertificatesApi* | [**get_tls_cert**](docs/TlsCertificatesApi.md#get_tls_cert) | Get a TLS certificate
529+
*TlsCertificatesApi* | [**get_tls_cert_blob**](docs/TlsCertificatesApi.md#get_tls_cert_blob) | Get a TLS certificate blob (Limited Availability)
521530
*TlsCertificatesApi* | [**list_tls_certs**](docs/TlsCertificatesApi.md#list_tls_certs) | List TLS certificates
522531
*TlsCertificatesApi* | [**update_tls_cert**](docs/TlsCertificatesApi.md#update_tls_cert) | Update a TLS certificate
523532
*TlsConfigurationsApi* | [**get_tls_config**](docs/TlsConfigurationsApi.md#get_tls_config) | Get a TLS configuration
@@ -615,6 +624,8 @@ The fastly-rust API client currently does not support the following endpoints:
615624
- [`/alerts/definitions/{definition_id}`](https://www.fastly.com/documentation/reference/api/observability/alerts/definitions) (DELETE, GET, PUT)
616625
- [`/alerts/definitions`](https://www.fastly.com/documentation/reference/api/observability/alerts/definitions) (GET, POST)
617626
- [`/alerts/history`](https://www.fastly.com/documentation/reference/api/observability/alerts/history) (GET)
627+
- [`/dns/configurations/{dns_configuration_id}`](https://www.fastly.com/documentation/reference/api/) (DELETE, GET, PATCH)
628+
- [`/dns/configurations`](https://www.fastly.com/documentation/reference/api/) (GET, POST)
618629
- [`/notifications/integration-types`](https://developer.fastly.com/reference/api/observability/notification) (GET)
619630
- [`/notifications/integrations/{integration_id}/rotateSigningKey`](https://developer.fastly.com/reference/api/observability/notification) (POST)
620631
- [`/notifications/integrations/{integration_id}/signingKey`](https://developer.fastly.com/reference/api/observability/notification) (GET)
@@ -634,7 +645,9 @@ The fastly-rust API client currently does not support the following endpoints:
634645
- [`/stats`](https://www.fastly.com/documentation/reference/api/metrics-stats/historical-stats) (GET)
635646
- [`/tls/activations/{tls_activation_id}`](https://www.fastly.com/documentation/reference/api/tls/mutual-tls/activations) (GET, PATCH)
636647
- [`/tls/activations`](https://www.fastly.com/documentation/reference/api/tls/mutual-tls/activations) (GET)
637-
- [`/tls/preview/domains/{tls_preview_domain_id}`](https://www.fastly.com/documentation/reference/api/) (GET, PATCH)
648+
- [`/tls/configurations/{tls_configuration_id}`](https://www.fastly.com/documentation/reference/api/) (DELETE, GET, PATCH)
649+
- [`/tls/configurations`](https://www.fastly.com/documentation/reference/api/) (GET, POST)
650+
- [`/tls/preview/domains/{domain_id}`](https://www.fastly.com/documentation/reference/api/) (GET, PATCH)
638651
- [`/tls/preview/domains`](https://www.fastly.com/documentation/reference/api/) (GET, POST)
639652
- [`/v1/channel/{service_id}/ts/h/limit/{max_entries}`](https://www.fastly.com/documentation/reference/api/metrics-stats/origin-insights) (GET)
640653
- [`/v1/channel/{service_id}/ts/h`](https://www.fastly.com/documentation/reference/api/metrics-stats/origin-insights) (GET)

docs/RelationshipTlsDnsRecord.md docs/AsyncResponse.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
# RelationshipTlsDnsRecord
1+
# AsyncResponse
22

33
## Properties
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**dns_record** | Option<[**crate::models::RelationshipTlsDnsRecordDnsRecord**](RelationshipTlsDnsRecordDnsRecord.md)> | |
7+
**title** | Option<**String**> | |
8+
**status** | Option<**String**> | |
89

910
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1011

docs/BillingInvoicesApi.md

+35-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
Method | HTTP request | Description
77
------ | ------------ | -----------
88
[**get_invoice_by_invoice_id**](BillingInvoicesApi.md#get_invoice_by_invoice_id) | **GET** /billing/v3/invoices/{invoice_id} | Get invoice by ID.
9+
[**get_month_to_date_invoice**](BillingInvoicesApi.md#get_month_to_date_invoice) | **GET** /billing/v3/invoices/month-to-date | Get month-to-date invoice.
910
[**list_invoices**](BillingInvoicesApi.md#list_invoices) | **GET** /billing/v3/invoices | List of invoices.
1011

1112

@@ -31,7 +32,39 @@ Name | Type | Description | Required | Notes
3132

3233
### Return type
3334

34-
[**crate::models::InvoiceResponse**](InvoiceResponse.md)
35+
[**crate::models::EomInvoiceResponse**](EomInvoiceResponse.md)
36+
37+
### Authorization
38+
39+
[token](../README.md#token)
40+
41+
### HTTP request headers
42+
43+
- **Content-Type**: Not defined
44+
- **Accept**: application/json
45+
46+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
47+
48+
49+
## get_month_to_date_invoice
50+
51+
Returns month-to-date invoice for the current month.
52+
53+
```rust
54+
let cfg = &Configuration::default();
55+
let params = GetMonthToDateInvoiceParams {
56+
// parameters
57+
};
58+
get_month_to_date_invoice(cfg, params)
59+
```
60+
61+
### Parameters
62+
63+
This endpoint does not need any parameter.
64+
65+
### Return type
66+
67+
[**crate::models::MtdInvoiceResponse**](MtdInvoiceResponse.md)
3568

3669
### Authorization
3770

@@ -69,7 +102,7 @@ Name | Type | Description | Required | Notes
69102

70103
### Return type
71104

72-
[**crate::models::ListInvoicesResponse**](ListInvoicesResponse.md)
105+
[**crate::models::ListEomInvoicesResponse**](ListEomInvoicesResponse.md)
73106

74107
### Authorization
75108

docs/BillingUsageMetricsApi.md

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
# BillingUsageMetricsApi
2+
3+
> [!NOTE]
4+
> All URIs are relative to `https://api.fastly.com`
5+
6+
Method | HTTP request | Description
7+
------ | ------------ | -----------
8+
[**get_service_level_usage**](BillingUsageMetricsApi.md#get_service_level_usage) | **GET** /billing/v2/account_customers/{customer_id}/service-usage-metrics | Retrieve service-level usage metrics for a product.
9+
[**get_service_level_usage_types**](BillingUsageMetricsApi.md#get_service_level_usage_types) | **GET** /billing/v2/account_customers/{customer_id}/service-usage-types | Retrieve product usage types for a customer.
10+
11+
12+
13+
## get_service_level_usage
14+
15+
Returns product usage, broken down by service.
16+
17+
```rust
18+
let cfg = &Configuration::default();
19+
let params = GetServiceLevelUsageParams {
20+
// parameters
21+
};
22+
get_service_level_usage(cfg, params)
23+
```
24+
25+
### Parameters
26+
27+
28+
Name | Type | Description | Required | Notes
29+
------------- | ------------- | ------------- | ------------- | -------------
30+
**customer_id** | **String** | Alphanumeric string identifying the customer. | [required] |
31+
**product_id** | **String** | The product identifier for the metrics returned (e.g., `cdn_usage`). This field is not required for CSV requests. | [required] |
32+
**usage_type_name** | **String** | The usage type name for the metrics returned (e.g., `North America Requests`). This field is not required for CSV requests. | [required] |
33+
**time_granularity** | **String** | | [required] |
34+
**start_date** | Option\<**String**> | | |
35+
**end_date** | Option\<**String**> | | |
36+
**start_month** | Option\<**String**> | | |
37+
**end_month** | Option\<**String**> | | |
38+
**limit** | Option\<**String**> | Number of results per page. The maximum is 100. | |[default to 5]
39+
**cursor** | Option\<**String**> | Cursor value from the `next_cursor` field of a previous response, used to retrieve the next page. To request the first page, this should be empty. | |
40+
41+
### Return type
42+
43+
[**crate::models::Serviceusagemetrics**](Serviceusagemetrics.md)
44+
45+
### Authorization
46+
47+
[token](../README.md#token)
48+
49+
### HTTP request headers
50+
51+
- **Content-Type**: Not defined
52+
- **Accept**: application/json
53+
54+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
55+
56+
57+
## get_service_level_usage_types
58+
59+
Returns product usage types reported by the customer's services.
60+
61+
```rust
62+
let cfg = &Configuration::default();
63+
let params = GetServiceLevelUsageTypesParams {
64+
// parameters
65+
};
66+
get_service_level_usage_types(cfg, params)
67+
```
68+
69+
### Parameters
70+
71+
72+
Name | Type | Description | Required | Notes
73+
------------- | ------------- | ------------- | ------------- | -------------
74+
**customer_id** | **String** | Alphanumeric string identifying the customer. | [required] |
75+
76+
### Return type
77+
78+
[**crate::models::Serviceusagetypes**](Serviceusagetypes.md)
79+
80+
### Authorization
81+
82+
[token](../README.md#token)
83+
84+
### HTTP request headers
85+
86+
- **Content-Type**: Not defined
87+
- **Accept**: application/json
88+
89+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
90+

docs/CreateDashboardRequest.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# CreateDashboardRequest
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**name** | **String** | A human-readable name |
8+
**description** | Option<**String**> | A short description of the dashboard |
9+
**items** | Option<[**Vec&lt;crate::models::DashboardItem&gt;**](DashboardItem.md)> | A list of [dashboard items](#dashboard-item). |
10+
11+
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
12+
13+

docs/Dashboard.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Dashboard
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**id** | Option<**String**> | Dashboard identifier (UUID) | [readonly]
8+
**name** | Option<**String**> | A human-readable name |
9+
**description** | Option<**String**> | A short description of the dashboard |
10+
**items** | Option<[**Vec&lt;crate::models::DashboardItem&gt;**](DashboardItem.md)> | A list of [dashboard items](#dashboard-item). |
11+
**created_at** | Option<**String**> | Date and time in ISO 8601 format. | [readonly]
12+
**updated_at** | Option<**String**> | Date and time in ISO 8601 format. | [readonly]
13+
**created_by** | Option<[**crate::models::DashboardPropertyCreatedBy**](DashboardPropertyCreatedBy.md)> | |
14+
**updated_by** | Option<[**crate::models::DashboardPropertyUpdatedBy**](DashboardPropertyUpdatedBy.md)> | |
15+
16+
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
17+
18+

docs/DashboardItem.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# DashboardItem
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**id** | Option<**String**> | Dashboard item identifier (UUID) | [readonly]
8+
**title** | **String** | A human-readable title for the dashboard item |
9+
**subtitle** | **String** | A human-readable subtitle for the dashboard item. Often a description of the visualization. |
10+
**data_source** | [**crate::models::DashboardItemPropertyDataSource**](DashboardItemPropertyDataSource.md) | |
11+
**visualization** | [**crate::models::DashboardItemPropertyVisualization**](DashboardItemPropertyVisualization.md) | |
12+
**span** | Option<**i32**> | The number of columns for the dashboard item to span. Dashboards are rendered on a 12-column grid on \"desktop\" screen sizes. | [default to 4]
13+
14+
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
15+
16+
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# DashboardItemPropertyDataSource
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**_type** | **String** | The source of the data to display. |
8+
**config** | [**crate::models::DashboardItemPropertyDataSourcePropertyConfig**](DashboardItemPropertyDataSourcePropertyConfig.md) | |
9+
10+
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11+
12+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# DashboardItemPropertyDataSourcePropertyConfig
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**metrics** | **Vec<String>** | The metrics to visualize. Valid options are defined by the selected [data source](#field_data_source). |
8+
9+
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# DashboardItemPropertyVisualization
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**_type** | **String** | The type of visualization to display. |
8+
**config** | [**crate::models::DashboardItemPropertyVisualizationPropertyConfig**](DashboardItemPropertyVisualizationPropertyConfig.md) | |
9+
10+
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11+
12+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# DashboardItemPropertyVisualizationPropertyConfig
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**plot_type** | **String** | The type of chart to display. |
8+
**format** | Option<**String**> | (Optional) The units to use to format the data. | [default to Format_Number]
9+
**calculation_method** | Option<**String**> | (Optional) The aggregation function to apply to the dataset. |
10+
11+
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
12+
13+

docs/RelationshipTlsDnsRecordDnsRecord.md docs/DashboardPropertyCreatedBy.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# RelationshipTlsDnsRecordDnsRecord
1+
# DashboardPropertyCreatedBy
22

33
## Properties
44

55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**data** | Option<[**Vec&lt;crate::models::RelationshipMemberTlsDnsRecord&gt;**](RelationshipMemberTlsDnsRecord.md)> | |
87

98
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
109

docs/DashboardPropertyUpdatedBy.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# DashboardPropertyUpdatedBy
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
8+
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
9+
10+

docs/DomainInspectorMeasurements.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Name | Type | Description | Notes
4242
**origin_fetch_resp_body_bytes** | Option<**i32**> | Total body bytes received from origin. |
4343
**bandwidth** | Option<**i32**> | Total bytes delivered (`resp_header_bytes` + `resp_body_bytes` + `bereq_header_bytes` + `bereq_body_bytes`). |
4444
**edge_hit_ratio** | Option<**f32**> | Ratio of cache hits to cache misses at the edge, between 0 and 1 (`edge_hit_requests` / (`edge_hit_requests` + `edge_miss_requests`)). |
45-
**origin_offload** | Option<**f32**> | Ratio of response bytes delivered from the edge compared to what is delivered from origin, between 0 and 1. (`edge_resp_body_bytes` + `edge_resp_header_bytes`) / (`origin_fetch_resp_body_bytes` + `origin_fetch_resp_header_bytes` + `edge_resp_body_bytes` + `edge_resp_header_bytes`). |
45+
**origin_offload** | Option<**f32**> | Origin Offload measures the ratio of bytes served to end users that were cached by Fastly, over the bytes served to end users, between 0 and 1. ((`edge_resp_body_bytes` + `edge_resp_header_bytes`) - (`origin_fetch_resp_body_bytes` + `origin_fetch_resp_header_bytes`)) / (`edge_resp_body_bytes` + `edge_resp_header_bytes`). Previously, Origin Offload used a different formula. [Learn more](https://www.fastly.com/documentation/reference/changes/2024/06/add-origin_offload-metric). |
4646
**origin_status_200** | Option<**i32**> | Number of responses received from origin with status code 200 (Success). |
4747
**origin_status_204** | Option<**i32**> | Number of responses received from origin with status code 204 (No Content). |
4848
**origin_status_206** | Option<**i32**> | Number of responses received from origin with status code 206 (Partial Content). |

docs/InvoiceResponse.md docs/EomInvoiceResponse.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# InvoiceResponse
1+
# EomInvoiceResponse
22

33
## Properties
44

docs/GetServiceLevelUsageResponse.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# GetServiceLevelUsageResponse
2+
3+
## Properties
4+
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**data** | Option<[**crate::models::ServiceusagemetricsData**](ServiceusagemetricsData.md)> | |
8+
9+
[[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+

0 commit comments

Comments
 (0)