You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-3Lines changed: 10 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ A Ruby client library for interacting with most facets of the [Fastly API](https
8
8
To install via RubyGems, add the following to your project's `Gemfile`:
9
9
10
10
```ruby
11
-
gem 'fastly', '~> 15.0.0'
11
+
gem 'fastly', '~> 15.1.0'
12
12
```
13
13
14
14
Then run `bundle install`.
@@ -191,6 +191,8 @@ Class | Method | Description
191
191
[*Fastly::DomainInspectorRealtimeApi*](docs/DomainInspectorRealtimeApi.md) | [**get_domain_inspector_last_max_entries**](docs/DomainInspectorRealtimeApi.md#get_domain_inspector_last_max_entries) | Get a limited number of real-time domain data entries
192
192
[*Fastly::DomainInspectorRealtimeApi*](docs/DomainInspectorRealtimeApi.md) | [**get_domain_inspector_last_second**](docs/DomainInspectorRealtimeApi.md#get_domain_inspector_last_second) | Get real-time domain data from a specified time
193
193
[*Fastly::DomainOwnershipsApi*](docs/DomainOwnershipsApi.md) | [**list_domain_ownerships**](docs/DomainOwnershipsApi.md#list_domain_ownerships) | List domain-ownerships
194
+
[*Fastly::DomainResearchApi*](docs/DomainResearchApi.md) | [**domain_status**](docs/DomainResearchApi.md#domain_status) | Domain status
[*Fastly::EventsApi*](docs/EventsApi.md) | [**get_event**](docs/EventsApi.md#get_event) | Get an event
195
197
[*Fastly::EventsApi*](docs/EventsApi.md) | [**list_events**](docs/EventsApi.md#list_events) | List events
196
198
[*Fastly::GzipApi*](docs/GzipApi.md) | [**create_gzip_config**](docs/GzipApi.md#create_gzip_config) | Create a gzip configuration
@@ -255,6 +257,7 @@ Class | Method | Description
255
257
[*Fastly::KvStoreApi*](docs/KvStoreApi.md) | [**kv_store_delete**](docs/KvStoreApi.md#kv_store_delete) | Delete a KV store.
256
258
[*Fastly::KvStoreApi*](docs/KvStoreApi.md) | [**kv_store_get**](docs/KvStoreApi.md#kv_store_get) | Describe a KV store.
257
259
[*Fastly::KvStoreApi*](docs/KvStoreApi.md) | [**kv_store_list**](docs/KvStoreApi.md#kv_store_list) | List all KV stores.
260
+
[*Fastly::KvStoreApi*](docs/KvStoreApi.md) | [**kv_store_put**](docs/KvStoreApi.md#kv_store_put) | Update a KV store.
258
261
[*Fastly::KvStoreItemApi*](docs/KvStoreItemApi.md) | [**kv_store_delete_item**](docs/KvStoreItemApi.md#kv_store_delete_item) | Delete an item.
259
262
[*Fastly::KvStoreItemApi*](docs/KvStoreItemApi.md) | [**kv_store_get_item**](docs/KvStoreItemApi.md#kv_store_get_item) | Get an item.
260
263
[*Fastly::KvStoreItemApi*](docs/KvStoreItemApi.md) | [**kv_store_list_item_keys**](docs/KvStoreItemApi.md#kv_store_list_item_keys) | List item keys.
@@ -400,6 +403,7 @@ Class | Method | Description
400
403
[*Fastly::LoggingSyslogApi*](docs/LoggingSyslogApi.md) | [**get_log_syslog**](docs/LoggingSyslogApi.md#get_log_syslog) | Get a syslog log endpoint
401
404
[*Fastly::LoggingSyslogApi*](docs/LoggingSyslogApi.md) | [**list_log_syslog**](docs/LoggingSyslogApi.md#list_log_syslog) | List Syslog log endpoints
402
405
[*Fastly::LoggingSyslogApi*](docs/LoggingSyslogApi.md) | [**update_log_syslog**](docs/LoggingSyslogApi.md#update_log_syslog) | Update a syslog log endpoint
406
+
[*Fastly::MetricsPlatformApi*](docs/MetricsPlatformApi.md) | [**get_platform_metrics_service_historical**](docs/MetricsPlatformApi.md#get_platform_metrics_service_historical) | Get historical time series metrics for a single service
403
407
[*Fastly::MutualAuthenticationApi*](docs/MutualAuthenticationApi.md) | [**create_mutual_tls_authentication**](docs/MutualAuthenticationApi.md#create_mutual_tls_authentication) | Create a Mutual Authentication
404
408
[*Fastly::MutualAuthenticationApi*](docs/MutualAuthenticationApi.md) | [**delete_mutual_tls**](docs/MutualAuthenticationApi.md#delete_mutual_tls) | Delete a Mutual TLS
405
409
[*Fastly::MutualAuthenticationApi*](docs/MutualAuthenticationApi.md) | [**get_mutual_authentication**](docs/MutualAuthenticationApi.md#get_mutual_authentication) | Get a Mutual Authentication
[*Fastly::ProductDomainInspectorApi*](docs/ProductDomainInspectorApi.md) | [**get_product_domain_inspector**](docs/ProductDomainInspectorApi.md#get_product_domain_inspector) | Get product enablement status
457
461
[*Fastly::ProductDomainInspectorApi*](docs/ProductDomainInspectorApi.md) | [**get_services_product_domain_inspector**](docs/ProductDomainInspectorApi.md#get_services_product_domain_inspector) | Get services with product enabled
[*Fastly::ProductDomainResearchApi*](docs/ProductDomainResearchApi.md) | [**get_domain_research**](docs/ProductDomainResearchApi.md#get_domain_research) | Get product enablement status
[*Fastly::ProductFanoutApi*](docs/ProductFanoutApi.md) | [**get_product_fanout**](docs/ProductFanoutApi.md#get_product_fanout) | Get product enablement status
@@ -646,8 +653,6 @@ The fastly-ruby API client currently does not support the following endpoints:
Copy file name to clipboardExpand all lines: docs/DomainInspectorHistoricalApi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ opts = {
37
37
group_by:'domain', # String | Dimensions to return in the query. Multiple dimensions may be separated by commas. For example, `group_by=domain` will return one timeseries for every domain, as a total across all datacenters (POPs).
38
38
limit:'limit_example', # String | Number of results per page. The maximum is 200.
39
39
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.
40
-
region:'usa', # String | Limit query to one or more specific geographic regions. Values should be comma-separated.
40
+
region:'africa_std', # String | Limit query to one or more specific geographic regions. Values should be comma-separated.
41
41
datacenter:'SJC,STP', # String | Limit query to one or more specific POPs. Values should be comma-separated.
42
42
domain:'domain_1.com,domain_2.com', # String | Limit query to one or more specific domains. Values should be comma-separated.
The `Suggest` method performs a real-time query of the search term(s) against the [known zone database](http://zonedb.org), making recommendations, stemming, and applying Unicode folding, IDN normalization, registrar supported-zone restrictions, and other refinements. **Note:**`Suggest` method responses do not include domain availability status.
66
+
67
+
### Examples
68
+
69
+
```ruby
70
+
api_instance =Fastly::DomainResearchApi.new
71
+
opts = {
72
+
query:'foo%20bar', # String |
73
+
defaults:'club', # String |
74
+
keywords:'food,kitchen', # String |
75
+
location:'de', # String |
76
+
vendor:'dnsimple.com', # String |
77
+
}
78
+
79
+
begin
80
+
# Suggest domains
81
+
result = api_instance.suggest_domains(opts)
82
+
p result
83
+
rescueFastly::ApiError => e
84
+
puts"Error when calling DomainResearchApi->suggest_domains: #{e}"
85
+
end
86
+
```
87
+
88
+
### Options
89
+
90
+
| Name | Type | Description | Notes |
91
+
| ---- | ---- | ----------- | ----- |
92
+
|**query**|**String**|||
93
+
|**defaults**|**String**||[optional]|
94
+
|**keywords**|**String**||[optional]|
95
+
|**location**|**String**||[optional]|
96
+
|**vendor**|**String**||[optional]|
97
+
98
+
### Return type
99
+
100
+
[**InlineResponse2006**](InlineResponse2006.md)
101
+
102
+
[[Back to top]](#)[[Back to API list]](../../README.md#endpoints)
0 commit comments