Skip to content

Commit 15f8879

Browse files
author
github-actions
committed
Generated v8.6.0
1 parent f66532c commit 15f8879

File tree

106 files changed

+9712
-89
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

+9712
-89
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [v8.6.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v8.6.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
## [v8.5.0](https://github.com/fastly/fastly-ruby/releases/tag/release/v8.5.0) (2024-07-01)
414

515
**Bug fixes:**

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A Ruby client library for interacting with most facets of the [Fastly API](https
88
To install via RubyGems, add the following to your project's `Gemfile`:
99

1010
```ruby
11-
gem 'fastly', '~> 8.5.0'
11+
gem 'fastly', '~> 8.6.0'
1212
```
1313

1414
Then run `bundle install`.
@@ -102,7 +102,10 @@ Class | Method | Description
102102
[*Fastly::BillingAddressApi*](docs/BillingAddressApi.md) | [**get_billing_addr**](docs/BillingAddressApi.md#get_billing_addr) | Get a billing address
103103
[*Fastly::BillingAddressApi*](docs/BillingAddressApi.md) | [**update_billing_addr**](docs/BillingAddressApi.md#update_billing_addr) | Update a billing address
104104
[*Fastly::BillingInvoicesApi*](docs/BillingInvoicesApi.md) | [**get_invoice_by_invoice_id**](docs/BillingInvoicesApi.md#get_invoice_by_invoice_id) | Get invoice by ID.
105+
[*Fastly::BillingInvoicesApi*](docs/BillingInvoicesApi.md) | [**get_month_to_date_invoice**](docs/BillingInvoicesApi.md#get_month_to_date_invoice) | Get month-to-date invoice.
105106
[*Fastly::BillingInvoicesApi*](docs/BillingInvoicesApi.md) | [**list_invoices**](docs/BillingInvoicesApi.md#list_invoices) | List of invoices.
107+
[*Fastly::BillingUsageMetricsApi*](docs/BillingUsageMetricsApi.md) | [**get_service_level_usage**](docs/BillingUsageMetricsApi.md#get_service_level_usage) | Retrieve service-level usage metrics for a product.
108+
[*Fastly::BillingUsageMetricsApi*](docs/BillingUsageMetricsApi.md) | [**get_service_level_usage_types**](docs/BillingUsageMetricsApi.md#get_service_level_usage_types) | Retrieve product usage types for a customer.
106109
[*Fastly::CacheSettingsApi*](docs/CacheSettingsApi.md) | [**create_cache_settings**](docs/CacheSettingsApi.md#create_cache_settings) | Create a cache settings object
107110
[*Fastly::CacheSettingsApi*](docs/CacheSettingsApi.md) | [**delete_cache_settings**](docs/CacheSettingsApi.md#delete_cache_settings) | Delete a cache settings object
108111
[*Fastly::CacheSettingsApi*](docs/CacheSettingsApi.md) | [**get_cache_settings**](docs/CacheSettingsApi.md#get_cache_settings) | Get a cache settings object
@@ -414,6 +417,11 @@ Class | Method | Description
414417
[*Fastly::MutualAuthenticationApi*](docs/MutualAuthenticationApi.md) | [**get_mutual_authentication**](docs/MutualAuthenticationApi.md#get_mutual_authentication) | Get a Mutual Authentication
415418
[*Fastly::MutualAuthenticationApi*](docs/MutualAuthenticationApi.md) | [**list_mutual_authentications**](docs/MutualAuthenticationApi.md#list_mutual_authentications) | List Mutual Authentications
416419
[*Fastly::MutualAuthenticationApi*](docs/MutualAuthenticationApi.md) | [**patch_mutual_authentication**](docs/MutualAuthenticationApi.md#patch_mutual_authentication) | Update a Mutual Authentication
420+
[*Fastly::ObservabilityCustomDashboardsApi*](docs/ObservabilityCustomDashboardsApi.md) | [**create_dashboard**](docs/ObservabilityCustomDashboardsApi.md#create_dashboard) | Create a new dashboard
421+
[*Fastly::ObservabilityCustomDashboardsApi*](docs/ObservabilityCustomDashboardsApi.md) | [**delete_dashboard**](docs/ObservabilityCustomDashboardsApi.md#delete_dashboard) | Delete an existing dashboard
422+
[*Fastly::ObservabilityCustomDashboardsApi*](docs/ObservabilityCustomDashboardsApi.md) | [**get_dashboard**](docs/ObservabilityCustomDashboardsApi.md#get_dashboard) | Retrieve a dashboard by ID
423+
[*Fastly::ObservabilityCustomDashboardsApi*](docs/ObservabilityCustomDashboardsApi.md) | [**list_dashboards**](docs/ObservabilityCustomDashboardsApi.md#list_dashboards) | List all custom dashboards
424+
[*Fastly::ObservabilityCustomDashboardsApi*](docs/ObservabilityCustomDashboardsApi.md) | [**update_dashboard**](docs/ObservabilityCustomDashboardsApi.md#update_dashboard) | Update an existing dashboard
417425
[*Fastly::OriginInspectorHistoricalApi*](docs/OriginInspectorHistoricalApi.md) | [**get_origin_inspector_historical**](docs/OriginInspectorHistoricalApi.md#get_origin_inspector_historical) | Get historical origin data for a service
418426
[*Fastly::OriginInspectorRealtimeApi*](docs/OriginInspectorRealtimeApi.md) | [**get_origin_inspector_last120_seconds**](docs/OriginInspectorRealtimeApi.md#get_origin_inspector_last120_seconds) | Get real-time origin data for the last 120 seconds
419427
[*Fastly::OriginInspectorRealtimeApi*](docs/OriginInspectorRealtimeApi.md) | [**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
@@ -515,6 +523,7 @@ Class | Method | Description
515523
[*Fastly::TlsCertificatesApi*](docs/TlsCertificatesApi.md) | [**create_tls_cert**](docs/TlsCertificatesApi.md#create_tls_cert) | Create a TLS certificate
516524
[*Fastly::TlsCertificatesApi*](docs/TlsCertificatesApi.md) | [**delete_tls_cert**](docs/TlsCertificatesApi.md#delete_tls_cert) | Delete a TLS certificate
517525
[*Fastly::TlsCertificatesApi*](docs/TlsCertificatesApi.md) | [**get_tls_cert**](docs/TlsCertificatesApi.md#get_tls_cert) | Get a TLS certificate
526+
[*Fastly::TlsCertificatesApi*](docs/TlsCertificatesApi.md) | [**get_tls_cert_blob**](docs/TlsCertificatesApi.md#get_tls_cert_blob) | Get a TLS certificate blob (Limited Availability)
518527
[*Fastly::TlsCertificatesApi*](docs/TlsCertificatesApi.md) | [**list_tls_certs**](docs/TlsCertificatesApi.md#list_tls_certs) | List TLS certificates
519528
[*Fastly::TlsCertificatesApi*](docs/TlsCertificatesApi.md) | [**update_tls_cert**](docs/TlsCertificatesApi.md#update_tls_cert) | Update a TLS certificate
520529
[*Fastly::TlsConfigurationsApi*](docs/TlsConfigurationsApi.md) | [**get_tls_config**](docs/TlsConfigurationsApi.md#get_tls_config) | Get a TLS configuration
@@ -612,6 +621,8 @@ The fastly-ruby API client currently does not support the following endpoints:
612621
- [`/alerts/definitions/{definition_id}`](https://www.fastly.com/documentation/reference/api/observability/alerts/definitions) (DELETE, GET, PUT)
613622
- [`/alerts/definitions`](https://www.fastly.com/documentation/reference/api/observability/alerts/definitions) (GET, POST)
614623
- [`/alerts/history`](https://www.fastly.com/documentation/reference/api/observability/alerts/history) (GET)
624+
- [`/dns/configurations/{dns_configuration_id}`](https://www.fastly.com/documentation/reference/api/) (DELETE, GET, PATCH)
625+
- [`/dns/configurations`](https://www.fastly.com/documentation/reference/api/) (GET, POST)
615626
- [`/notifications/integration-types`](https://developer.fastly.com/reference/api/observability/notification) (GET)
616627
- [`/notifications/integrations/{integration_id}/rotateSigningKey`](https://developer.fastly.com/reference/api/observability/notification) (POST)
617628
- [`/notifications/integrations/{integration_id}/signingKey`](https://developer.fastly.com/reference/api/observability/notification) (GET)
@@ -621,7 +632,9 @@ The fastly-ruby API client currently does not support the following endpoints:
621632
- [`/resources/stores/kv/{store_id}/batch`](https://www.fastly.com/documentation/reference/api/services/resources/kv-store-item) (PUT)
622633
- [`/tls/activations/{tls_activation_id}`](https://www.fastly.com/documentation/reference/api/tls/mutual-tls/activations) (GET, PATCH)
623634
- [`/tls/activations`](https://www.fastly.com/documentation/reference/api/tls/mutual-tls/activations) (GET)
624-
- [`/tls/preview/domains/{tls_preview_domain_id}`](https://www.fastly.com/documentation/reference/api/) (GET, PATCH)
635+
- [`/tls/configurations/{tls_configuration_id}`](https://www.fastly.com/documentation/reference/api/) (DELETE, GET, PATCH)
636+
- [`/tls/configurations`](https://www.fastly.com/documentation/reference/api/) (GET, POST)
637+
- [`/tls/preview/domains/{domain_id}`](https://www.fastly.com/documentation/reference/api/) (GET, PATCH)
625638
- [`/tls/preview/domains`](https://www.fastly.com/documentation/reference/api/) (GET, POST)
626639
- [`/v1/channel/{service_id}/ts/h/limit/{max_entries}`](https://www.fastly.com/documentation/reference/api/metrics-stats/origin-insights) (GET)
627640
- [`/v1/channel/{service_id}/ts/h`](https://www.fastly.com/documentation/reference/api/metrics-stats/origin-insights) (GET)
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
# Fastly::RelationshipTlsDnsRecord
1+
# Fastly::AsyncResponse
22

33
## Properties
44

55
| Name | Type | Description | Notes |
66
| ---- | ---- | ----------- | ----- |
7-
| **dns_record** | [**RelationshipTlsDnsRecordDnsRecord**](RelationshipTlsDnsRecordDnsRecord.md) | | [optional] |
7+
| **title** | **String** | | [optional] |
8+
| **status** | **String** | | [optional] |
89

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

docs/BillingInvoicesApi.md

Lines changed: 37 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ api_instance = Fastly::BillingInvoicesApi.new
1414
Method | HTTP request | Description
1515
------ | ------------ | -----------
1616
[**get_invoice_by_invoice_id**](BillingInvoicesApi.md#get_invoice_by_invoice_id) | **GET** /billing/v3/invoices/{invoice_id} | Get invoice by ID.
17+
[**get_month_to_date_invoice**](BillingInvoicesApi.md#get_month_to_date_invoice) | **GET** /billing/v3/invoices/month-to-date | Get month-to-date invoice.
1718
[**list_invoices**](BillingInvoicesApi.md#list_invoices) | **GET** /billing/v3/invoices | List of invoices.
1819

1920

2021
## `get_invoice_by_invoice_id()`
2122

2223
```ruby
23-
get_invoice_by_invoice_id(opts): <InvoiceResponse> # Get invoice by ID.
24+
get_invoice_by_invoice_id(opts): <EomInvoiceResponse> # Get invoice by ID.
2425
```
2526

2627
Returns invoice associated with the invoice id.
@@ -50,14 +51,46 @@ end
5051

5152
### Return type
5253

53-
[**InvoiceResponse**](InvoiceResponse.md)
54+
[**EomInvoiceResponse**](EomInvoiceResponse.md)
55+
56+
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
57+
[[Back to README]](../../README.md)
58+
## `get_month_to_date_invoice()`
59+
60+
```ruby
61+
get_month_to_date_invoice: <MtdInvoiceResponse> # Get month-to-date invoice.
62+
```
63+
64+
Returns month-to-date invoice for the current month.
65+
66+
### Examples
67+
68+
```ruby
69+
api_instance = Fastly::BillingInvoicesApi.new
70+
71+
begin
72+
# Get month-to-date invoice.
73+
result = api_instance.get_month_to_date_invoice
74+
p result
75+
rescue Fastly::ApiError => e
76+
puts "Error when calling BillingInvoicesApi->get_month_to_date_invoice: #{e}"
77+
end
78+
```
79+
80+
### Options
81+
82+
This endpoint does not need any parameter.
83+
84+
### Return type
85+
86+
[**MtdInvoiceResponse**](MtdInvoiceResponse.md)
5487

5588
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
5689
[[Back to README]](../../README.md)
5790
## `list_invoices()`
5891

5992
```ruby
60-
list_invoices(opts): <ListInvoicesResponse> # List of invoices.
93+
list_invoices(opts): <ListEomInvoicesResponse> # List of invoices.
6194
```
6295

6396
Returns the list of invoices, sorted by billing start date (newest to oldest).
@@ -93,7 +126,7 @@ end
93126

94127
### Return type
95128

96-
[**ListInvoicesResponse**](ListInvoicesResponse.md)
129+
[**ListEomInvoicesResponse**](ListEomInvoicesResponse.md)
97130

98131
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
99132
[[Back to README]](../../README.md)

docs/BillingUsageMetricsApi.md

Lines changed: 111 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
# Fastly::BillingUsageMetricsApi
2+
3+
4+
```ruby
5+
require 'fastly'
6+
api_instance = Fastly::BillingUsageMetricsApi.new
7+
```
8+
9+
## Methods
10+
11+
> [!NOTE]
12+
> All URIs are relative to `https://api.fastly.com`
13+
14+
Method | HTTP request | Description
15+
------ | ------------ | -----------
16+
[**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.
17+
[**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.
18+
19+
20+
## `get_service_level_usage()`
21+
22+
```ruby
23+
get_service_level_usage(opts): <Serviceusagemetrics> # Retrieve service-level usage metrics for a product.
24+
```
25+
26+
Returns product usage, broken down by service.
27+
28+
### Examples
29+
30+
```ruby
31+
api_instance = Fastly::BillingUsageMetricsApi.new
32+
opts = {
33+
customer_id: 'customer_id_example', # String | Alphanumeric string identifying the customer.
34+
product_id: 'product_id_example', # String | The product identifier for the metrics returned (e.g., `cdn_usage`). This field is not required for CSV requests.
35+
usage_type_name: 'usage_type_name_example', # String | The usage type name for the metrics returned (e.g., `North America Requests`). This field is not required for CSV requests.
36+
time_granularity: 'time_granularity_example', # String |
37+
start_date: '2023-01-01', # String |
38+
end_date: '2023-01-31', # String |
39+
start_month: '2023-01', # String |
40+
end_month: '2023-03', # String |
41+
limit: 'limit_example', # String | Number of results per page. The maximum is 100.
42+
cursor: 'cursor_example', # 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.
43+
}
44+
45+
begin
46+
# Retrieve service-level usage metrics for a product.
47+
result = api_instance.get_service_level_usage(opts)
48+
p result
49+
rescue Fastly::ApiError => e
50+
puts "Error when calling BillingUsageMetricsApi->get_service_level_usage: #{e}"
51+
end
52+
```
53+
54+
### Options
55+
56+
| Name | Type | Description | Notes |
57+
| ---- | ---- | ----------- | ----- |
58+
| **customer_id** | **String** | Alphanumeric string identifying the customer. | |
59+
| **product_id** | **String** | The product identifier for the metrics returned (e.g., `cdn_usage`). This field is not required for CSV requests. | |
60+
| **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. | |
61+
| **time_granularity** | **String** | | |
62+
| **start_date** | **String** | | [optional] |
63+
| **end_date** | **String** | | [optional] |
64+
| **start_month** | **String** | | [optional] |
65+
| **end_month** | **String** | | [optional] |
66+
| **limit** | **String** | Number of results per page. The maximum is 100. | [optional][default to &#39;5&#39;] |
67+
| **cursor** | **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. | [optional] |
68+
69+
### Return type
70+
71+
[**Serviceusagemetrics**](Serviceusagemetrics.md)
72+
73+
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
74+
[[Back to README]](../../README.md)
75+
## `get_service_level_usage_types()`
76+
77+
```ruby
78+
get_service_level_usage_types(opts): <Serviceusagetypes> # Retrieve product usage types for a customer.
79+
```
80+
81+
Returns product usage types reported by the customer's services.
82+
83+
### Examples
84+
85+
```ruby
86+
api_instance = Fastly::BillingUsageMetricsApi.new
87+
opts = {
88+
customer_id: 'customer_id_example', # String | Alphanumeric string identifying the customer.
89+
}
90+
91+
begin
92+
# Retrieve product usage types for a customer.
93+
result = api_instance.get_service_level_usage_types(opts)
94+
p result
95+
rescue Fastly::ApiError => e
96+
puts "Error when calling BillingUsageMetricsApi->get_service_level_usage_types: #{e}"
97+
end
98+
```
99+
100+
### Options
101+
102+
| Name | Type | Description | Notes |
103+
| ---- | ---- | ----------- | ----- |
104+
| **customer_id** | **String** | Alphanumeric string identifying the customer. | |
105+
106+
### Return type
107+
108+
[**Serviceusagetypes**](Serviceusagetypes.md)
109+
110+
[[Back to top]](#) [[Back to API list]](../../README.md#endpoints)
111+
[[Back to README]](../../README.md)

docs/CreateDashboardRequest.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Fastly::CreateDashboardRequest
2+
3+
## Properties
4+
5+
| Name | Type | Description | Notes |
6+
| ---- | ---- | ----------- | ----- |
7+
| **name** | **String** | A human-readable name | |
8+
| **description** | **String** | A short description of the dashboard | [optional] |
9+
| **items** | [**Array&lt;DashboardItem&gt;**](DashboardItem.md) | A list of [dashboard items](#dashboard-item). | [optional] |
10+
11+
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
12+

docs/Dashboard.md

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

docs/DashboardItem.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Fastly::DashboardItem
2+
3+
## Properties
4+
5+
| Name | Type | Description | Notes |
6+
| ---- | ---- | ----------- | ----- |
7+
| **title** | **String** | A human-readable title for the dashboard item | |
8+
| **subtitle** | **String** | A human-readable subtitle for the dashboard item. Often a description of the visualization. | |
9+
| **data_source** | [**DashboardItemPropertyDataSource**](DashboardItemPropertyDataSource.md) | | |
10+
| **visualization** | [**DashboardItemPropertyVisualization**](DashboardItemPropertyVisualization.md) | | |
11+
| **id** | **String** | Dashboard item identifier (UUID) | [optional][readonly] |
12+
| **span** | **Integer** | The number of columns for the dashboard item to span. Dashboards are rendered on a 12-column grid on \&quot;desktop\&quot; screen sizes. | [optional][default to 4] |
13+
14+
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
15+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Fastly::DashboardItemPropertyDataSource
2+
3+
## Properties
4+
5+
| Name | Type | Description | Notes |
6+
| ---- | ---- | ----------- | ----- |
7+
| **type** | **String** | The source of the data to display. | |
8+
| **config** | [**DashboardItemPropertyDataSourcePropertyConfig**](DashboardItemPropertyDataSourcePropertyConfig.md) | | |
9+
10+
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
11+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Fastly::DashboardItemPropertyDataSourcePropertyConfig
2+
3+
## Properties
4+
5+
| Name | Type | Description | Notes |
6+
| ---- | ---- | ----------- | ----- |
7+
| **metrics** | **Array&lt;String&gt;** | The metrics to visualize. Valid options are defined by the selected [data source](#field_data_source). | |
8+
9+
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
10+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Fastly::DashboardItemPropertyVisualization
2+
3+
## Properties
4+
5+
| Name | Type | Description | Notes |
6+
| ---- | ---- | ----------- | ----- |
7+
| **type** | **String** | The type of visualization to display. | |
8+
| **config** | [**DashboardItemPropertyVisualizationPropertyConfig**](DashboardItemPropertyVisualizationPropertyConfig.md) | | |
9+
10+
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
11+
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Fastly::DashboardItemPropertyVisualizationPropertyConfig
2+
3+
## Properties
4+
5+
| Name | Type | Description | Notes |
6+
| ---- | ---- | ----------- | ----- |
7+
| **plot_type** | **String** | The type of chart to display. | |
8+
| **format** | **String** | (Optional) The units to use to format the data. | [optional][default to &#39;number&#39;] |
9+
| **calculation_method** | **String** | (Optional) The aggregation function to apply to the dataset. | [optional] |
10+
11+
[[Back to API list]](../../README.md#endpoints) [[Back to README]](../../README.md)
12+
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# Fastly::RelationshipTlsDnsRecords
1+
# Fastly::DashboardPropertyCreatedBy
22

33
## Properties
44

55
| Name | Type | Description | Notes |
66
| ---- | ---- | ----------- | ----- |
7-
| **dns_records** | [**RelationshipTlsDnsRecordDnsRecord**](RelationshipTlsDnsRecordDnsRecord.md) | | [optional] |
87

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

0 commit comments

Comments
 (0)