pub struct GetDomainInspectorHistoricalParams {
pub service_id: String,
pub start: Option<String>,
pub end: Option<String>,
pub downsample: Option<String>,
pub metric: Option<String>,
pub group_by: Option<String>,
pub limit: Option<String>,
pub cursor: Option<String>,
pub region: Option<String>,
pub datacenter: Option<String>,
pub domain: Option<String>,
}Expand description
struct for passing parameters to the method get_domain_inspector_historical
Fields§
§service_id: StringAlphanumeric string identifying the service.
start: Option<String>A valid ISO-8601-formatted date and time, or UNIX timestamp, indicating the inclusive start of the query time range. If not provided, a default is chosen based on the provided downsample value.
end: Option<String>A valid ISO-8601-formatted date and time, or UNIX timestamp, indicating the exclusive end of the query time range. If not provided, a default is chosen based on the provided downsample value.
downsample: Option<String>Duration of sample windows.
metric: Option<String>The metrics to retrieve. Multiple values should be comma-separated.
group_by: Option<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).
limit: Option<String>Number of results per page. The maximum is 200.
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.
region: Option<String>Limit query to one or more specific geographic regions. Values should be comma-separated.
datacenter: Option<String>Limit query to one or more specific POPs. Values should be comma-separated.
domain: Option<String>Limit query to one or more specific domains. Values should be comma-separated.
Trait Implementations§
Source§impl Clone for GetDomainInspectorHistoricalParams
impl Clone for GetDomainInspectorHistoricalParams
Source§fn clone(&self) -> GetDomainInspectorHistoricalParams
fn clone(&self) -> GetDomainInspectorHistoricalParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more